Files
kotlin-fork/j2k/testData/fileOrElement/thisExpression/classAdotThisFoo.new.kt
T
2019-04-03 11:21:55 +03:00

13 lines
173 B
Kotlin
Vendored

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