nix-gh/tests/lang/parse-fail-undef-var-2.nix

8 lines
92 B
Nix

let {
f = {x, y : ["baz" "bar" z "bat"]}: x + y;
body = f {x = "foo"; y = "bar";};
}