1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-09 03:56:01 +01:00
nix/tests/lang/eval-fail-assert.nix
2006-03-01 16:26:13 +00:00

5 lines
No EOL
59 B
Nix

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