Files
kotlin/idea/testData/codeInsight/lineMarker/recursiveCall/nested.kt
2015-04-08 15:14:10 +03:00

7 lines
107 B
Kotlin
Vendored

fun outer(a: Int) {
fun local(a: Int) {
if (a > 0) {
outer(a - 1)
}
}
}