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

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