cvs commit: hugs98/src static.c storage.h

Ross Paterson ross@soi.city.ac.uk
Mon, 16 Sep 2002 11:56:39 +0100


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