Files
kotlin-fork/j2k/testData/fileOrElement/superExpression/classAdotSuperFoo.kt
T

14 lines
186 B
Kotlin
Vendored

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