summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-01-26 17:10:26 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-01-26 17:10:26 -0500
commitc3c7a475626786988f0a367fc3c20f903f3fcbba (patch)
tree96d21b1114d7bc1ad6bddcdd1cc009f3c8152e9d /tests
parent554a00c1e5a61d1a2a2767eb091777fbc2a7b811 (diff)
Parsing basic expressions
Diffstat (limited to 'tests')
-rw-r--r--tests/stuff.lac3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/stuff.lac b/tests/stuff.lac
index d58c1573..db29d5db 100644
--- a/tests/stuff.lac
+++ b/tests/stuff.lac
@@ -13,3 +13,6 @@ con c8 = fn t :: Type => t
con c9 = {}
con c10 = ([]) :: {Type}
+
+val v1 = fn t :: Type => fn x : t => x
+val v2 = v1 [c1] (fn y => y)