b45aeda711
#KT-30833 Fixed
18 lines
278 B
Plaintext
Vendored
18 lines
278 B
Plaintext
Vendored
import Outer.Middle.Inner.Companion.foo as foo1
|
|
|
|
class Outer {
|
|
class Middle {
|
|
class Inner {
|
|
companion object {
|
|
fun foo() {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class Test() {
|
|
fun test() {
|
|
val foo = 1
|
|
foo<caret>1()
|
|
}
|
|
} |