10 lines
146 B
Kotlin
Vendored
10 lines
146 B
Kotlin
Vendored
class Test {
|
|
fun test() {
|
|
Companion.<caret>Companion.foo
|
|
}
|
|
}
|
|
class Companion {
|
|
companion object {
|
|
val foo = ""
|
|
}
|
|
} |