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