16 Sep
2002
16 Sep
'02
11:08 p.m.
Thanks, now fixed (see commit for details.) --sigbjorn ----- Original Message ----- From: "Ross Paterson" <ross@soi.city.ac.uk> To: "Sigbjorn Finne" <sof@glass.cse.ogi.edu> Cc: <cvs-hugs@haskell.org> Sent: Monday, September 16, 2002 03:56 Subject: Re: cvs commit: hugs98/src static.c storage.h
This is getting a lot harder, but:
module A where data Foo = Foo
module B(module A) where import A hiding (Foo) import A (Foo)
module C where import B f = Foo -- should fail, but doesn't