Files
kotlin/compiler/testData/diagnostics/testsWithStdLib/native/inline.kt
2014-12-16 16:23:31 +03:00

11 lines
274 B
Kotlin

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