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