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

11 lines
158 B
Kotlin
Vendored

import kotlin.jvm.*
abstract class C {
abstract external fun foo()
}
fun test() {
abstract class Local {
abstract external fun foo()
}
}