14 lines
153 B
Kotlin
14 lines
153 B
Kotlin
package a.b
|
|
|
|
class Base {
|
|
fun foo() {
|
|
}
|
|
}
|
|
|
|
class A : Base() {
|
|
inner class C {
|
|
fun test() {
|
|
this@A.foo()
|
|
}
|
|
}
|
|
} |