Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/native/override.kt
T
2014-12-16 16:23:31 +03:00

9 lines
105 B
Kotlin

import kotlin.jvm.*
trait Base {
fun foo()
}
class Derived : Base {
override native fun foo()
}