forked from lix-project/lix
* Test "with as; with bs;" since nobody knows what its semantics is.
This commit is contained in:
parent
141294ff38
commit
3bfd3a4e95
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue