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