Re: Error reading interface files

1997-12-17 Thread Simon Marlow
Andrew Rock <[EMAIL PROTECTED]> writes: > I've had a problem using GHC exporting the constuctor (:::). > > Here is a cut down version that causes the problem. > [...] Thanks for a fine bug report, fixed in the upcoming 2.10 release. Cheers, Simon -- Simon Marlow

Error reading interface files

1997-12-17 Thread Andrew Rock
I've had a problem using GHC exporting the constuctor (:::). Here is a cut down version that causes the problem. --8< module MyList (MyList(Empty, (:::))) where data MyList a = Empty | (MyList a) ::: (MyList a) --8< module User where