Files
kotlin/compiler/testData/codegen/box/diagnostics/functions/tailRecursion/functionWithNoTails.kt
2016-11-09 21:41:12 +03:00

11 lines
220 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
<!NO_TAIL_CALLS_FOUND!>tailrec fun noTails()<!> {
// nothing here
}
fun box(): String {
noTails()
return "OK"
}