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

module T7053 where

-- no standalone kind signature
data TypeRep (a :: k) where
   TyApp   :: TypeRep a -> TypeRep b -> TypeRep (a b)