Constraint
簡単な例を書こうとすると、範囲外のエラーが発生します。
{-# LANGUAGE UndecidableInstances,
MultiParamTypeClasses,
KindSignatures,
Rank2Types,
ConstraintKinds,
FlexibleInstances,
OverlappingInstances,
TypeFamilies #-}
type family A a :: Constraint
エラーは、
> ghci test.hs
[1 of 1] Compiling Main ( test.hs, interpreted )
test.hs:10:20: Not in scope: type constructor or class `Constraint'
Failed, modules loaded: none.
制約の同義語は期待どおりに機能しているようですが、
type ShowOrd a = (Ord a, Show a)
前もって感謝します。