#unittest { name: "Max recursion"; error: RUNTIME; }; func f(a) { return f(a-1); } func main() { System.maxRecursionDepth = 1024; return f(0); }