nix-super/tests/functional/lang/eval-fail-addErrorContext-example.nix

10 lines
199 B
Nix
Raw Normal View History

2024-03-24 00:56:05 +02:00
let
countDown = n:
if n == 0
then throw "kaboom"
else
builtins.addErrorContext
"while counting down; n = ${toString n}"
("x" + countDown (n - 1));
in countDown 10