Open GoogleCodeExporter opened 9 years ago
Actually this is because ghc has become more pedantic of late, and no longer
allows the postfix section extension by default. (It used to be lax about
requiring, or even providing, LANGUAGE pragmas for extensions that couldn't
break standard-compliant programs.)
You now need {-# LANGUAGE PostfixOperators #-} to enable it, whereas in earlier
ghc versions it quietly worked by default.
Original comment by allber...@gmail.com
on 10 Dec 2011 at 4:26
It's probably worth mentioning this gotcha in the docs anyway. I pushed a patch
that does this.
Original comment by daniel.w...@gmail.com
on 10 Dec 2011 at 11:49
Certainly it's worth mentioning; I'm just explaining why it *used* to be
perfectly valid.
ghc is in the business of breaking lots of formerly working stuff of late, it
seems. (Control.Exception; base vs. H'98; ...)
Original comment by allber...@gmail.com
on 10 Dec 2011 at 11:57
Original issue reported on code.google.com by
chris...@gmail.com
on 10 Dec 2011 at 2:51