fb4c256d08
Fixed test (while resolve with library on android): 'run' resolves to library function
13 lines
217 B
Kotlin
13 lines
217 B
Kotlin
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
<!NO_TAIL_CALLS_FOUND!>tailRecursive fun foo()<!> {
|
|
bar {
|
|
<!NON_TAIL_RECURSIVE_CALL!>foo<!>()
|
|
}
|
|
}
|
|
|
|
fun bar(a: Any) {}
|
|
|
|
fun box(): String {
|
|
foo()
|
|
return "OK"
|
|
} |