packages feed

purescript-0.8.0.0: examples/failing/ConflictingExports2.purs

-- @shouldFailWith ScopeConflict
module A where

  thing :: Int
  thing = 1

-- Fails here because re-exporting forces any scope conflicts to be resolved
module Main (thing, module A) where

  import A

  thing :: Int
  thing = 2