import/export bug

Ross Paterson ross@soi.city.ac.uk
Mon, 27 Jan 2003 14:31:31 +0000


Given:

	module A(Type(..)) where data Type = Constr

	module B(Type(..)) where import A

	module C(Type(..)) where import B

	module D where
	import C
	f = Constr

ERROR "D.hs":3 - Undefined constructor function "Constr"