hiding (Stuff(..))

Ross Paterson ross@soi.city.ac.uk
Tue, 10 Sep 2002 15:22:29 +0100


Hugs accepts the following modules:

	module A(Stuff(Foo, Bar)) where data Stuff = Foo | Bar

	module B(Stuff) where import A hiding(Stuff(..))

but Stuff should also be hidden.