* Test "with as; with bs;" since nobody knows what its semantics is.

This commit is contained in:
Eelco Dolstra 2010-03-23 14:26:27 +00:00
parent 141294ff38
commit 3bfd3a4e95
1 changed files with 19 additions and 1 deletions

View File

@ -1 +1,19 @@
Str("xyzzybar",[])
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;
}