packages feed

purescript-0.12.0: tests/purs/passing/ResolvableScopeConflict.purs

module Main where

import A (thing)
import B
import Effect.Console (log)

-- Not an error as although we have `thing` in scope from both A and B, it is
-- imported explicitly from A, giving it a resolvable solution.
what :: Boolean -> Int
what true = thing
what false = zing

main = log "Done"