Files
nix-js/nix-js/tests/lang/eval-fail-scope-5.nix

16 lines
106 B
Nix

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