Nix/tests/lang/eval-fail-assert.nix
2006-03-01 16:26:13 +00:00

5 lines
59 B
Nix

let {
x = arg: assert arg == "y"; 123;
body = x "x";
}