show/hide this revision's text 3 added 253 characters in body

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

show/hide this revision's text 2 added 49 characters in body

Great compiler messages

This used to produce a fun error message:

{-# OPTIONS -XExistentialQuantification #-}
data Foo = forall a. Foo a
unfoo (Foo a) = a
$ ghc Foo.hs
    My brain just exploded.
    I can't handle pattern bindings for existentially-quantified constructors.

Sadly, GHC's brain has been upgraded and no longer explodes when you do this.

show/hide this revision's text 1

This used to produce a fun error message:

{-# OPTIONS -XExistentialQuantification #-}
data Foo = forall a. Foo a
unfoo (Foo a) = a
$ ghc Foo.hs
    My brain just exploded.
    I can't handle pattern bindings for existentially-quantified constructors.

Sadly, GHC's brain has been upgraded and no longer explodes when you do this.