forked from lix-project/lix
* Doh.
This commit is contained in:
parent
3bfd3a4e95
commit
71be50cc25
|
@ -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",[])
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue