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

module T7053 where

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