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