Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/native/override.kt
T

10 lines
128 B
Kotlin
Vendored

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