Re: ghc 6.10.4 infix declarations and '\' bug or not ?

2009-08-22 Thread Duncan Coutts
On Sat, 2009-08-22 at 15:52 +1000, John Lask wrote: in declaring fixity for an operator (\\) to get it to compile using ghc 6.10.4, I needed to use the following code infixl 9 \\\ (\\) a b = etc ... where I assume the first \ escapes the second \, using infixl 9 \\ generates a syntax

Re: ghc 6.10.4 infix declarations and '\' bug or not ?

2009-08-22 Thread John Lask
-haskell-users@haskell.org Sent: Sunday, August 23, 2009 12:34 AM Subject: Re: ghc 6.10.4 infix declarations and '\' bug or not ? On Sat, 2009-08-22 at 15:52 +1000, John Lask wrote: in declaring fixity for an operator (\\) to get it to compile using ghc 6.10.4, I needed to use the following code

ghc 6.10.4 infix declarations and '\' bug or not ?

2009-08-21 Thread John Lask
in declaring fixity for an operator (\\) to get it to compile using ghc 6.10.4, I needed to use the following code infixl 9 \\\ (\\) a b = etc ... where I assume the first \ escapes the second \, using infixl 9 \\ generates a syntax error infixl 9 \\ used to compile no problems with ghc