blob: 7468d5b0c94b084202201325d2cdbb58493cea86 [file]
// EXIT_CODE: !0
// OUTPUT_REGEX: Hook\RUncaught Kotlin exception: kotlin\.Error: an error\R.*
@file:OptIn(kotlin.experimental.ExperimentalNativeApi::class)
import kotlin.test.*
fun main() {
setUnhandledExceptionHook {
println("Hook")
terminateWithUnhandledException(it)
}
throw Error("an error")
}