Files
kotlin-fork/j2k/testData/fileOrElement/thisExpression/classAdotThisFoo.kt
T
2016-12-14 13:35:31 +03:00

13 lines
180 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()
}
}
}