blob: ffc393cbff12744e2981e9ee9464b8ec1b7ec468 (
plain)
1
2
3
4
5
6
7
8
|
-- !!! Re-exporting a subset of a alg. data type's constructors
module Mod101 where
import Mod101_AuxB
-- ConB is not imported by Mod101_AuxB, hence not exported either.
x :: DataA
x = ConB False
|