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

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

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

}