aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-28 13:39:20 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-28 13:39:20 -0400
commitd0814411127a382b18b5d14a68942b430e291276 (patch)
treedaaaebb8c4e084c4f4a2aafa908d63007251501c /tests
parente42ea5dbeb92bf49da6a73962c9f44a86fa989c2 (diff)
Shorthand for multi-binding con declaration
Diffstat (limited to 'tests')
-rw-r--r--tests/cargs.lac7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/cargs.lac b/tests/cargs.lac
index 4aba9860..7aa10d1b 100644
--- a/tests/cargs.lac
+++ b/tests/cargs.lac
@@ -5,3 +5,10 @@ con id3 = fn t => id2 t
con pair = fn (t :: Type) (u :: Type) => (t, u)
con pair2 = fn t u => pair t u
con pair3 = fn t (u :: Type) => pair2 t u
+
+con id4 (t :: Type) = t
+con id5 (t :: Type) :: Type = id4 t
+con id6 t :: Type = id5 t
+
+con pair4 t (u :: Type) = pair3 t u
+con pair5 t (u :: Type) :: (Type * Type) = pair4 t u