Files
kotlin/compiler/testData/codegen/box/diagnostics/functions/tailRecursion/functionWithNoTails.kt
Svetlana Isakova b71260f54e Moved tests
that are used both for codegen & diagnostics to codegen/box/diagnostics
2014-11-21 14:02:45 +03:00

8 lines
130 B
Kotlin

<!NO_TAIL_CALLS_FOUND!>tailRecursive fun noTails()<!> {
// nothing here
}
fun box(): String {
noTails()
return "OK"
}