tailRecursive fun foo() { fun bar() { foo() } } fun box(): String { foo() return "OK" }