Files
2020-12-16 19:52:30 +03:00

10 lines
104 B
Kotlin
Vendored

class My {
companion object {
fun My.foo() {}
}
fun test() {
foo()
}
}