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

module T7053 where

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