summaryrefslogtreecommitdiff
path: root/tests/eq.ur
blob: 14c50e3adb8d99bc2bfa938d731f5d974d79bb80 (plain)
1
2
3
4
5
6
7
val b1 = 1 = 1
val b2 = "Good" = "Bad"

fun eq_pair (t1 :: Type) (t2 :: Type) (eq1 : eq t1) (eq2 : eq t2) (x : t1 * t2) (y : t1 * t2) =
        x.1 = y.1

val b3 = True <> False