about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/parse-fail-undef-var-2.nix
let {

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

  body = f {x = "foo"; y = "bar";};

}