1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/tests/lang/eval-okay-with.nix

20 lines
171 B
Nix
Raw Normal View History

2005-11-04 09:50:33 -05:00
let {
a = "xyzzy";
as = {
a = "foo";
b = "bar";
};
2010-03-23 10:51:32 -04:00
bs = {
a = "bar";
};
2005-11-04 09:50:33 -05:00
x = with as; a + b;
2010-03-23 10:51:32 -04:00
y = with as; with bs; a + b;
body = x + y;
2005-11-04 09:50:33 -05:00
}