25 lines
271 B
Kotlin
25 lines
271 B
Kotlin
import kotlin.jvm.*
|
|
|
|
native fun foo()
|
|
|
|
class C {
|
|
native fun foo()
|
|
|
|
companion object {
|
|
native fun foo()
|
|
}
|
|
}
|
|
|
|
object O {
|
|
native fun foo()
|
|
}
|
|
|
|
fun test() {
|
|
class Local {
|
|
native fun foo()
|
|
}
|
|
|
|
object {
|
|
native fun foo()
|
|
}
|
|
} |