mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
11 lines
274 B
Kotlin
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()<!>
|
|
}
|
|
} |