17 lines
127 B
Kotlin
Vendored
17 lines
127 B
Kotlin
Vendored
package t
|
|
|
|
class A {
|
|
companion object Companion {
|
|
|
|
}
|
|
}
|
|
|
|
fun A.Companion.foo() {}
|
|
|
|
fun test() {
|
|
<caret>A.foo()
|
|
}
|
|
|
|
|
|
|