16 lines
154 B
Kotlin
Vendored
16 lines
154 B
Kotlin
Vendored
package t
|
|
|
|
class A {
|
|
companion object Companion {
|
|
fun test()
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
<caret>A.test()
|
|
}
|
|
|
|
|
|
// REF: companion object of (t).A
|
|
|