lix/tests/lang/eval-fail-bad-value.nix

8 lines
84 B
Nix
Raw Normal View History

2006-07-24 15:50:29 +00:00
let {
f = {x, y : ["baz" "bat"]}: x + y;
body = f {x = "foo"; y = "bar";};
}