nix-gh/tests/lang/eval-fail-assert.nix

5 lines
59 B
Nix

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