12 lines
127 B
Kotlin
12 lines
127 B
Kotlin
namespace {
|
|
open class Base {
|
|
fun foo() : Unit
|
|
}
|
|
open class A : Base {
|
|
open class C {
|
|
fun test() : Unit {
|
|
super@A.foo()
|
|
}
|
|
}
|
|
}
|
|
} |