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