Files
kotlin/compiler/testData/diagnostics/testsWithStdLib/native/inline.kt

11 lines
292 B
Kotlin
Vendored

import kotlin.jvm.*
abstract class C {
<!EXTERNAL_DECLARATION_CANNOT_BE_INLINED!><!NOTHING_TO_INLINE!>inline<!> external fun foo()<!>
}
fun test() {
abstract class Local {
<!EXTERNAL_DECLARATION_CANNOT_BE_INLINED!><!NOTHING_TO_INLINE!>inline<!> external fun foo()<!>
}
}