Re: hiding (Stuff(..))
"Sigbjorn Finne" <[email protected]>
| Newsgroups | gmane.comp.lang.haskell.hugs.bugs |
|---|---|
| Message-ID | <00ef01c258dd$bc289c70$1e32a8c0@sofxp> |
Thanks, now fixed. --sigbjorn ----- Original Message ----- From: "Ross Paterson" <[email protected]> To: <[email protected]> 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.