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

8 lines
106 B
Kotlin
Vendored

class F {
fun f(a: Int, other: F) {
if (a > 0) {
other.f(a - 1)
}
}
}