147521d6cb
#KT-16118 Fixed #KT-30007 Fixed
18 lines
271 B
Plaintext
Vendored
18 lines
271 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
|
|
foo1()
|
|
}
|
|
} |