mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
11 lines
292 B
Kotlin
Vendored
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()<!>
|
|
}
|
|
} |