Files
nix/tests/lang/eval-fail-scope-5.nix
Eelco Dolstra ae55e79541 * More tests.
2006-05-02 11:20:55 +00:00

11 lines
78 B
Nix

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