summaryrefslogtreecommitdiff
path: root/testsuite/tests/polykinds/T6081.hs
blob: ac1bd982528f7bcb7e9d5bc7d4e431d1f4d24af7 (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE KindSignatures, PolyKinds, DataKinds, RankNTypes #-}

module T6081 where

data KProxy (a :: *) = KP

class KindClass (kp :: KProxy k)
instance KindClass (KP :: KProxy [k])