Files
kotlin/idea/testData/codeInsight/lineMarker/recursiveCall/thisQualifier.kt
2015-04-08 16:44:45 +03:00

17 lines
346 B
Kotlin
Vendored

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