59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
25 lines
269 B
Kotlin
25 lines
269 B
Kotlin
import kotlin.jvm.*
|
|
|
|
native fun foo()
|
|
|
|
class C {
|
|
native fun foo()
|
|
|
|
default object {
|
|
native fun foo()
|
|
}
|
|
}
|
|
|
|
object O {
|
|
native fun foo()
|
|
}
|
|
|
|
fun test() {
|
|
class Local {
|
|
native fun foo()
|
|
}
|
|
|
|
object {
|
|
native fun foo()
|
|
}
|
|
} |