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