mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
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"
|
|
} |