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

5 lines
105 B
Kotlin
Vendored

fun f(a: Int) {
if (a > 0) {
<lineMarker descr="Recursive call">f</lineMarker>(a - 1)
}
}