1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/tests/functional/lang/eval-okay-scope-6.nix

8 lines
78 B
Nix
Raw Normal View History

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