blob: 1a4cdbafd3c233fc2d976c27423194c626e6cd1c (
plain)
1
2
3
4
5
6
7
8
9
10
|
{-# LANGUAGE StandaloneKindSignatures #-}
{-# LANGUAGE MultiParamTypeClasses, PolyKinds, ConstraintKinds #-}
module SAKS_004 where
import Data.Kind (Type, Constraint)
type C :: (k -> Type) -> k -> Constraint
class C a b where
f :: a b
|