nix-gh/tests/lang/eval-fail-scope-5.nix

11 lines
78 B
Nix
Raw Normal View History

2006-05-02 13:15:04 +02:00
let {
x = "a";
y = "b";
f = {x ? y, y ? x}: x + y;
2006-05-02 13:20:55 +02:00
body = f {};
2006-05-02 13:15:04 +02:00
}