about summary refs log tree commit diff
path: root/tvix/eval/src/tests/nix_tests/eval-okay-tail-call-1.nix
let
  f = n: if n == 100000 then n else f (n + 1);
in f 0