hiding (Stuff(..))

Sigbjorn Finne sof@galois.com
Tue, 10 Sep 2002 08:21:28 -0700


Thanks, now fixed.

--sigbjorn

----- Original Message ----- 
From: "Ross Paterson" <ross@soi.city.ac.uk>
To: <hugs-bugs@haskell.org>
Sent: Tuesday, September 10, 2002 07:22
Subject: hiding (Stuff(..))


> 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.