view tests/eq.ur @ 314:a07f476d9b61

Termination checking allows anything in links and actions
author Adam Chlipala <adamc@hcoop.net>
date Tue, 09 Sep 2008 12:36:13 -0400
parents 32f9212583b2
children 7abb28e9d51f
line wrap: on
line source
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