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