summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_fail/T12801.hs
blob: 22bbdf0aae342174ae9bec68dfa30dbbe7c64fdd (plain)
1
2
3
4
5
6
7
8
data Container
  = Container [Wibble Int]
  deriving (Eq, Show)

data Wibble a
  = Wibble a
  | Wobble
  deriving (Eq, Functor, Show)