10 lines
104 B
Kotlin
Vendored
10 lines
104 B
Kotlin
Vendored
class My {
|
|
companion object {
|
|
fun My.foo() {}
|
|
}
|
|
|
|
fun test() {
|
|
foo()
|
|
}
|
|
}
|