13 lines
130 B
Kotlin
13 lines
130 B
Kotlin
namespace {
|
|
open class Base {
|
|
fun foo() : Unit {
|
|
}
|
|
}
|
|
open class A : Base {
|
|
open class C {
|
|
fun test() : Unit {
|
|
this@A.foo()
|
|
}
|
|
}
|
|
}
|
|
} |