guix/tests/lang/eval-okay-scope-4.nix

11 lines
101 B
Nix

let {
x = "a";
y = "b";
f = {x ? y, y ? x}: x + y;
body = f {x = "c";} + f {y = "d";};
}