instance bug(?)

1998-12-17 Thread Jeff Lewis
Using 4.01, outa the box, with -fglasgow-exts. I get the following complaint: Main.hs:25: No instance for `Probe (Trans DLX_Op (DLX_Cell DLXReg Int))' arising from use of `processor' at Main.hs:25 Now, scanning the relevant .hi files, I have: instance __forall [_a] {Prel

Instance bug

1999-08-17 Thread Sven Panne
Here one of my favourite bugs in larger projects (IIRC, this has partly been reported by me in the "Importing, hiding, and exporting" thread): -- A.hs - module A where data Foo = Foo -- Typo! Forgot "deriving Show" -- B.hs --

RE: instance bug(?)

1998-12-22 Thread Simon Peyton-Jones
eNoteType (FunTy fun arg) = FunTy (deNoteType fun) (deNoteType arg) deNoteType (ForAllTy tv ty) = ForAllTy tv (deNoteType ty) > -Original Message- > From: Jeff Lewis [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 17, 1998 7:17 PM > To: [EMAIL PROTECTED] > Sub

Re: Instance bug

1999-08-20 Thread Sven Panne
Simon Peyton-Jones wrote: > There's something very mysterious going on here. The > booted compiler does something different to the non-booted one! > (The latter works ok.) :-} > [...] This isn't really holding you up now, right? No, it doesn't: "grep Show *.hi" helps... Ciao, Sven -- Sve

RE: Instance bug

1999-08-20 Thread Simon Peyton-Jones
en Panne > Sent: Tuesday, August 17, 1999 8:27 PM > To: GHC Bugs > Subject: Instance bug > > > Here one of my favourite bugs in larger projects (IIRC, this > has partly been reported by me in the "Importing, hiding, and > exporting" thread): > > -- A.hs --

RE: Instance bug

1999-08-24 Thread Simon Peyton-Jones
: Friday, August 20, 1999 12:55 PM > To: 'Sven Panne'; GHC Bugs > Subject: RE: Instance bug > > > There's something very mysterious going on here. The > booted compiler does something different to the non-booted one! > (The latter works ok.) > > Will investi