summaryrefslogtreecommitdiff
path: root/tests/reduce.lac
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reduce.lac')
-rw-r--r--tests/reduce.lac19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/reduce.lac b/tests/reduce.lac
new file mode 100644
index 00000000..a6fa1e94
--- /dev/null
+++ b/tests/reduce.lac
@@ -0,0 +1,19 @@
+con c1 = int
+con c2 = (fn t :: Type => t) int
+
+con id = fn t :: Type => t
+con c3 = id int
+
+con fst = fn t1 :: Type => fn t2 :: Type => t1
+con c4 = fst int string
+
+con snd = fn t1 :: Type => fn t2 :: Type => t2
+con c5 = snd int string
+
+con apply = fn f :: Type -> Type => fn t :: Type => f t
+con c6 = apply id int
+con c7 = apply (fst int) string
+
+val grab = fn n :: Name => fn t :: Type => fn fs :: {Type} =>
+ fn x : $([n = t] ++ fs) => x
+val grabA = grab[#A][int][[B = string]]