packages feed

purescript-0.9.1: examples/failing/RequiredHiddenType.purs

-- @shouldFailWith TransitiveExportError
-- exporting `a` should fail as `A` is hidden
module Foo (B(..), a, b) where

data A = A
data B = B

a = A
b = B