RE: H/Direct Contact

2000-07-05 Thread Manuel M. T. Chakravarty
Sigbjorn Finne <[EMAIL PROTECTED]> wrote, > > -Original Message- > > From: Sven Kuenzler [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, July 05, 2000 08:13 > > To: Sigbjorn Finne > > Cc: Christoph Lueth > > Subject: Re: Sigbjorn Finne: RE: H/Direct Contact > > > > I am one of Christophs

RE: -fwarn-unused-imports message

2000-07-05 Thread Kevin Glynn
But those instances may be used by a module which imports this one. I think Sergey's comment is correct. hip hip Kevin Simon Marlow writes: > > ghc-pre-4.07 -fwarn-unused-imports > > > > says to my ` import M () ' > > > > .../M.hs:42: > > Warning: Module `M' is imported, but

RE: H/Direct Contact

2000-07-05 Thread Sigbjorn Finne
Hi Sven, this looks like a problem with booting GHC's driver from .hc files, so I'm re-directing you to the GHC bugs list, which'll hopefully be able to help you out. --sigbjorn > -Original Message- > From: Sven Kuenzler [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 05, 2000 08:1

RE: ghc-4.08 core dumps: probably parenthesis related

2000-07-05 Thread Simon Marlow
> Yesterday I downloaded ghc-4.08 (thanks again to Simon). > > When I ran ghc-4.08 today I got a > $ ghc geom.hs > Segmentation Fault - core dumped > > I think it is caused by the following contrived > list-comprehension. > >c' = [ e | e <- c, ((elem e ls) ] > > Note that the level of pare

RE: -fwarn-unused-imports message

2000-07-05 Thread Simon Marlow
> ghc-pre-4.07 -fwarn-unused-imports > > says to my ` import M () ' > > .../M.hs:42: > Warning: Module `M' is imported, but nothing from it is used > > > Should it add "except, maybe, instances" ? > Because removing this import may cause the error report about the > lack of some ins

ghc-4.08 core dumps: probably parenthesis related

2000-07-05 Thread Marc van Dongen
Hello all, Yesterday I downloaded ghc-4.08 (thanks again to Simon). When I ran ghc-4.08 today I got a $ ghc geom.hs Segmentation Fault - core dumped I think it is caused by the following contrived list-comprehension. c' = [ e | e <- c, ((elem e ls) ] Note that the level of parentheses is

-fwarn-unused-imports message

2000-07-05 Thread S.D.Mechveliani
Hello, ghc-pre-4.07 -fwarn-unused-imports says to my ` import M () ' .../M.hs:42: Warning: Module `M' is imported, but nothing from it is used Should it add "except, maybe, instances" ? Because removing this import may cause the error report about the lack of some instances. -