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

11 lines
154 B
Kotlin
Vendored

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