blob: 895de1f953c43cd2a0054100fb50babedcfd7f3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{-# LANGUAGE DataKinds, FunctionalDependencies, FlexibleInstances,
UndecidableInstances, PolyKinds, KindSignatures,
ConstraintKinds, FlexibleContexts #-}
module T6020 where
class Id (a :: k) (b :: k) | a -> b
instance Id a a
f :: Id x y => x -> y
f = f
--class Test (x :: a) (y :: a) | x -> y
--instance (Id x y, Id y z) => Test x z
-- (Id x0 y0, Id y0 z0, x~x0, z~z0)
-- (Id x y0, Id y0 z, y0~z, y0~y)
--test :: Test True True => ()
--test = ()
|