9 lines
105 B
Kotlin
9 lines
105 B
Kotlin
import kotlin.jvm.*
|
|
|
|
trait Base {
|
|
fun foo()
|
|
}
|
|
|
|
class Derived : Base {
|
|
override native fun foo()
|
|
} |