Great compiler messages
This used
My brain just exploded
If you try to produce a fun error messagecompile this code:
{-# OPTIONS -XExistentialQuantification LANGUAGE ExistentialQuantification #-}
data Foo = forall a. Foo a
unfoo (ignorefoo f = 1 where Foo a ) = a
f
You will get this error message:
$ ghc Foo.hs Foo.hs:3:22: My brain just exploded. I can't handle pattern bindings for existentially-quantified constructors.
SadlyInstead, GHC's brain has been upgraded and no longer explodes when you do thisuse a case-expression, or do-notation, to unpack the constructor. In the binding group for Foo a In a pattern binding: Foo a = f In the definition of `ignorefoo': ignorefoo f = 1 where Foo a = f
