* Scoping bug in `with'.

This commit is contained in:
Eelco Dolstra 2005-11-04 14:50:33 +00:00
parent 221c79013f
commit 1f285cf556
2 changed files with 14 additions and 0 deletions

View File

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

View File

@ -0,0 +1,13 @@
let {
a = "xyzzy";
as = {
a = "foo";
b = "bar";
};
x = with as; a + b;
body = x;
}