1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00
nix/tests/lang/eval-okay-with.nix
2005-11-04 14:50:33 +00:00

13 lines
105 B
Nix

let {
a = "xyzzy";
as = {
a = "foo";
b = "bar";
};
x = with as; a + b;
body = x;
}