mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
17 lines
346 B
Kotlin
Vendored
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)
|
|
}
|
|
}
|
|
}
|
|
}
|