* Tests for NIX-45.

This commit is contained in:
Eelco Dolstra 2006-05-02 11:15:04 +00:00
parent 7276e194ee
commit dca43ef795
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,10 @@
let {
x = "a";
y = "b";
f = {x ? y, y ? x}: x + y;
body = f {x = "c";} + f {y = "d";};
}

View File

@ -0,0 +1 @@
Str("ccdd")

View File

@ -0,0 +1,10 @@
let {
x = "a";
y = "b";
f = {x ? y, y ? x}: x + y;
body = f {x = "c";} + f {y = "d";};
}