summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_fail/T3101.hs
blob: f13b2f06960e37e9e87b142d7d7cb72e999f1f5e (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. a -> F a)
  deriving Show