Re: ANNOUNCE: GHC 6.10.1 beta

2008-09-27 Thread Matthias Kilian
Hi, On Mon, Sep 22, 2008 at 01:35:43AM +0100, Ian Lynagh wrote: We are pleased to announce that the GHC 6.10.0.20080921 snapshot is a beta release of GHC 6.10.1. [...] Please test as much as possible; bugs are much cheaper if we find them before the release! Not quite the beta snapshot, but

Re: ANNOUNCE: GHC 6.10.1 beta

2008-09-27 Thread Simon Marlow
Matthias Kilian wrote: Hi, On Mon, Sep 22, 2008 at 01:35:43AM +0100, Ian Lynagh wrote: We are pleased to announce that the GHC 6.10.0.20080921 snapshot is a beta release of GHC 6.10.1. [...] Please test as much as possible; bugs are much cheaper if we find them before the release! Not

Re: ANNOUNCE: GHC 6.10.1 beta

2008-09-27 Thread Juan Carlos Arevalo Baeza
Two regressions with Template Haskell on Windows: --- {-# LANGUAGE TemplateHaskell #-} module MkData where import Language.Haskell.TH import Language.Haskell.TH.Syntax op a b = a + b decl = [d| func = 0 `op` 3 |] --- This gives a very weird error: C:\Users\JCAB\Haskell\THTestghc --make