Files
kotlin/compiler/testData/codegen/boxWithStdlib/fullJdk/native/simpleNative.kt

17 lines
254 B
Kotlin
Vendored

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