Files
kotlin/compiler/testData/codegen/box/functions/tailRecursion/recursiveCallInLocalFunction.kt

10 lines
168 B
Kotlin

<!NO_TAIL_CALLS_FOUND!>tailRecursive fun foo()<!> {
fun bar() {
<!NON_TAIL_RECURSIVE_CALL!>foo<!>()
}
}
fun box(): String {
foo()
return "OK"
}