summaryrefslogtreecommitdiff
path: root/tests/eq.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-31 15:18:00 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-31 15:18:00 -0400
commit959f07d717b29f083b275333b38e40e5b9f78a9d (patch)
tree12350e6dcc8fba4e292634d86afb756bf466b210 /tests/eq.ur
parent6a144b5f5a7e85a02465aa25a19c3b5686e062cb (diff)
Add 'ne' to 'eq' type class
Diffstat (limited to 'tests/eq.ur')
-rw-r--r--tests/eq.ur2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/eq.ur b/tests/eq.ur
index 0c5cde60..14c50e3a 100644
--- a/tests/eq.ur
+++ b/tests/eq.ur
@@ -3,3 +3,5 @@ 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