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