1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/tests/lang/eval-fail-bad-value.nix

8 lines
84 B
Nix
Raw Normal View History

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