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

8 lines
120 B
Kotlin

class F {
fun f(a: Int) {
if (a > 0) {
this.<lineMarker>f</lineMarker>(a - 1)
}
}
}