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

14 lines
153 B
Kotlin

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