type-spec-0.1.0.0: src/Test/TypeSpec/Internal/Equality.hs
-- | Type Equality
module Test.TypeSpec.Internal.Equality (type PolyKindEq) where
-- | Operator 'Data.Equality.(==)' expects both arguments to have the
-- same kind.
type family PolyKindEq (a :: ak) (b :: bk) :: Bool where
PolyKindEq a a = 'True
PolyKindEq a b = 'False