10 lines
128 B
Kotlin
Vendored
10 lines
128 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
import kotlin.jvm.*
|
|
|
|
interface Base {
|
|
fun foo()
|
|
}
|
|
|
|
class Derived : Base {
|
|
override external fun foo()
|
|
} |