Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/native/override.kt
T
2015-05-12 19:43:17 +02:00

9 lines
109 B
Kotlin
Vendored

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