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

8 lines
84 B
Nix

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