forked from lix-project/lix
* Doh.
This commit is contained in:
parent
3bfd3a4e95
commit
71be50cc25
|
@ -1,19 +1 @@
|
||||||
let {
|
Str("xyzzybarxyzzybar",[])
|
||||||
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
|
@ -7,7 +7,13 @@ let {
|
||||||
b = "bar";
|
b = "bar";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bs = {
|
||||||
|
a = "bar";
|
||||||
|
};
|
||||||
|
|
||||||
x = with as; a + b;
|
x = with as; a + b;
|
||||||
|
|
||||||
body = x;
|
y = with as; with bs; a + b;
|
||||||
|
|
||||||
|
body = x + y;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue