packages feed

purescript-0.7.4.1: examples/failing/ImportHidingModule.purs

-- @shouldFailWith ImportHidingModule
module A where
  x = 1

module B (module B, module A) where
  import A
  y = 1

module C where
  import B hiding (module A)