* More tests.

This commit is contained in:
Eelco Dolstra
2006-05-02 11:20:55 +00:00
parent dca43ef795
commit ae55e79541
3 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -5,6 +5,6 @@ let {
f = {x ? y, y ? x}: x + y;
body = f {x = "c";} + f {y = "d";};
body = f {};
}
+1
View File
@@ -0,0 +1 @@
Str("ccdd")
+7
View File
@@ -0,0 +1,7 @@
let {
f = {x ? y, y ? x}: x + y;
body = f {x = "c";} + f {y = "d";};
}