Files
kotlin/compiler/testData/codegen/boxWithStdlib/native/simpleNative.kt
2014-12-16 16:23:30 +03:00

17 lines
252 B
Kotlin

package foo
import kotlin.jvm.*
class WithNative {
native fun foo()
}
fun box(): String {
try {
WithNative().foo()
return "Link error expected"
}
catch (e: java.lang.UnsatisfiedLinkError) {
return "OK"
}
}