Add a test to check that tail calls run in bounded stack space
This commit is contained in:
@@ -0,0 +1 @@
|
||||
100000
|
||||
@@ -0,0 +1,3 @@
|
||||
let
|
||||
f = n: if n == 100000 then n else f (n + 1);
|
||||
in f 0
|
||||
Reference in New Issue
Block a user