11 lines
173 B
Kotlin
Vendored
11 lines
173 B
Kotlin
Vendored
import kotlin.jvm.*
|
|
|
|
interface Tr {
|
|
external fun foo()
|
|
external fun bar() {}
|
|
|
|
companion object {
|
|
external fun foo()
|
|
external fun bar() {}
|
|
}
|
|
} |