Files
kotlin-fork/j2k/testData/fileOrElement/thisExpression/classAdotThisFoo.kt
T

14 lines
185 B
Kotlin
Vendored

package a.b
internal open class Base {
fun foo() {
}
}
internal class A : Base() {
internal inner class C {
fun test() {
this@A.foo()
}
}
}