blob: f2325abc7cb61b307d6d13826ff897d104c8987f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE TypeFamilies #-}
module T7601 where
import GHC.Exts
class C (a :: k) where
type F (a :: k)
class Category (c :: k -> k -> *) where
type Ob c :: k -> Constraint
|