59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
11 lines
306 B
Kotlin
11 lines
306 B
Kotlin
import kotlin.jvm.*
|
|
|
|
trait Tr {
|
|
<!NATIVE_DECLARATION_IN_TRAIT!>native fun foo()<!>
|
|
<!NATIVE_DECLARATION_IN_TRAIT, NATIVE_DECLARATION_CANNOT_HAVE_BODY!>native fun bar()<!> {}
|
|
|
|
default object {
|
|
native fun foo()
|
|
<!NATIVE_DECLARATION_CANNOT_HAVE_BODY!>native fun bar()<!> {}
|
|
}
|
|
} |