summaryrefslogtreecommitdiff
path: root/testsuite/tests/polykinds/T17963.hs
blob: ed609384d609c9fd22c7bc25398e4f755eeb2cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{-# Language DataKinds                #-}
{-# Language PolyKinds                #-}
{-# Language RankNTypes               #-}
{-# Language StandaloneKindSignatures #-}
{-# Language TypeApplications         #-}
module T17963 where

import GHC.Types (Constraint, Type, TYPE, RuntimeRep(..))

type Cat :: forall (rep :: RuntimeRep). TYPE rep -> Type
type Cat ob = ob -> ob -> Type

type  Category' :: forall rep (ob :: TYPE rep). Cat @rep ob -> Constraint
class Category' (cat :: Cat @rep ob) where
 id' :: forall a. cat a a