summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_fail/T3101.hs
blob: 134694a4fe6ec5b9cc2a9afb6dfd74a16ecf7f17 (plain)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE RankNTypes #-}

module T3101 where

type family F a :: *

data Boom = Boom (forall a. F a)
  deriving Show