aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/parse-fail-undef-var-2.nix
blob: c2e959495eec5b2865c3c61c6cc8156fa09cea58 (plain)
1
2
3
4
5
6
let

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

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