147521d6cb
#KT-16118 Fixed #KT-30007 Fixed
21 lines
320 B
Kotlin
Vendored
21 lines
320 B
Kotlin
Vendored
import Outer.Middle
|
|
|
|
class Outer {
|
|
class Middle {
|
|
class Inner {
|
|
companion object {
|
|
const val SIZE = 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class Test() {
|
|
fun test() {
|
|
val i = Middle.Inner.SIZE<caret>
|
|
}
|
|
|
|
fun test2() {
|
|
val i = Outer.Middle.Inner.SIZE
|
|
}
|
|
} |