This commit is contained in:
Eelco Dolstra 2010-03-23 14:51:32 +00:00
parent 3bfd3a4e95
commit 71be50cc25
2 changed files with 8 additions and 20 deletions

View File

@ -1,19 +1 @@
let {
a = "xyzzy";
as = {
a = "foo";
b = "bar";
};
bs = {
a = "bar";
};
x = with as; a + b;
y = with as; with bs; a + b;
body = x + y;
}
Str("xyzzybarxyzzybar",[])

View File

@ -7,7 +7,13 @@ let {
b = "bar";
};
bs = {
a = "bar";
};
x = with as; a + b;
body = x;
y = with as; with bs; a + b;
body = x + y;
}