summaryrefslogtreecommitdiff
path: root/testsuite/tests/polykinds/T5716.hs
blob: 572de5e4e855f3b2b32c94ae19c8c481fa4f487c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# LANGUAGE GADTs                      #-}
{-# LANGUAGE TypeFamilies               #-}
{-# LANGUAGE PolyKinds, DataKinds       #-}

module T5716 where


data family DF a 
data instance DF Int = DFInt

data U = U1 (DF Int)

data I :: U -> * where I1 :: I (U1 DFInt)