nix/tests/functional/lang/eval-okay-scope-6.nix

13 lines
109 B
Nix
Raw Permalink Normal View History

2006-05-02 11:20:55 +00:00
let {
f =
{
x ? y,
y ? x,
}:
x + y;
2006-05-02 11:20:55 +00:00
body = f { x = "c"; } + f { y = "d"; };
2006-05-02 11:20:55 +00:00
}