147521d6cb
#KT-16118 Fixed #KT-30007 Fixed
18 lines
269 B
Plaintext
Vendored
18 lines
269 B
Plaintext
Vendored
import Outer.Middle.Inner.Companion as Inner1
|
|
|
|
class Outer {
|
|
class Middle {
|
|
class Inner {
|
|
companion object {
|
|
const val SIZE = 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class Middle {
|
|
fun test() {
|
|
val i = Inner1.SIZE
|
|
}
|
|
}
|