Re: [cvs] ghc/compiler/rename/ParseIFace won´t build

2001-01-29 Thread Volker Stolz
In local.glasgow-haskell-bugs, you wrote: /home/stolz/Linux/haskell/ghc-4.08.1/bin/happy +RTS -K2m -H16m -RTS -g rename/ParseIface.y Michael kindly pointed out that I should be using happy 1.9 anyway and not 1.10 from cvs. That solved the problem. -- \usepackage[latin1]{inputenc}! Volker

RE: Method contexts

2001-01-29 Thread Simon Peyton-Jones
Yes, it was a bug. I've just fixed it. Thanks for the report. Simon | BTW, there is a bug in the ghc's CVS HEAD. The following program: | | class Eq k = Member c k where | member :: c - k - Bool | class Member c a = Seq c a where | list :: c - [a] | instance Eq a = Member [a] a where