Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/native/noBody.kt
T
2014-12-16 16:23:29 +03:00

25 lines
267 B
Kotlin

import kotlin.jvm.*
native fun foo()
class C {
native fun foo()
class object {
native fun foo()
}
}
object O {
native fun foo()
}
fun test() {
class Local {
native fun foo()
}
object {
native fun foo()
}
}