about summary refs log tree commit diff
path: root/tests/lang/eval-fail-bad-value.nix
blob: 97969145eeb1ac8a2aa4014a3cded1e615ac8c82 (plain) (blame)
1
2
3
4
5
6
7
let {

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

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

}