summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_compile/Kind.hs
blob: 73c528df11f34275668d83d9f4786b3805a73b3a (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE TypeFamilies #-}

module Kind where

class C (a :: * -> *) where
  type T a

foo :: a x -> T a
foo = undefined