packages feed

purescript-0.8.0.0: examples/failing/ConflictingQualifiedImports.purs

-- @shouldFailWith ScopeConflict
module A where

  thing :: Int
  thing = 1

module B where

  thing :: Int
  thing = 2

module Main where

  import A as X
  import B as X

  foo = X.thing