summaryrefslogtreecommitdiff
path: root/testsuite/tests/polykinds/T7053.hs
blob: 4db1e0d7e9d44a47006be5daae511247c044020b (plain)
1
2
3
4
5
6
7
{-# LANGUAGE PolyKinds #-}

module T7053 where

data TypeRep (a :: k) where
   TyApp   :: TypeRep a -> TypeRep b -> TypeRep (a b)