summaryrefslogtreecommitdiff
path: root/testsuite/tests/deSugar/should_compile/ds041.hs
blob: c1a3f0eb602434c3abe2f855b2b99a615301e5e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{-# LANGUAGE DatatypeContexts #-}
{- In 2.05 this one crashed with

        Fail: "basicTypes/Id.lhs", line 990: incomplete pattern(s)
                to match in function "dataConFieldLabels"

   Reason: dsExpr (RecordCon ...) didn't extract
           the constructor properly.
-}

module ShouldCompile where

data Eq a => Foo a = Foo { x :: a }

foo :: Eq a => Foo a
foo = Foo{}