22 lines
330 B
Kotlin
Vendored
22 lines
330 B
Kotlin
Vendored
import Outer.Middle.Inner.Companion.foo
|
|
|
|
class Outer {
|
|
class Middle {
|
|
class Inner {
|
|
companion object {
|
|
fun foo() {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class Test() {
|
|
fun test2() {
|
|
val foo2 = 42
|
|
foo()
|
|
}
|
|
fun test() {
|
|
val foo1 = 1
|
|
foo<caret>()
|
|
}
|
|
} |