2841931ffa
#KT-10828 Fixed
13 lines
180 B
Kotlin
Vendored
13 lines
180 B
Kotlin
Vendored
package a.b
|
|
|
|
internal open class Base {
|
|
fun foo() {}
|
|
}
|
|
|
|
internal class A : Base() {
|
|
internal inner class C {
|
|
fun test() {
|
|
this@A.foo()
|
|
}
|
|
}
|
|
} |