guix/tests/lang/eval-okay-with.nix

14 lines
105 B
Nix

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