Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/native/inline.fir.kt
T
2021-08-04 17:33:08 +03:00

12 lines
203 B
Kotlin
Vendored

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