7 lines
215 B
Kotlin
Vendored
7 lines
215 B
Kotlin
Vendored
// EXIT_CODE: !0
|
|
// OUTPUT_REGEX: Uncaught Kotlin exception: kotlin\.Error: an error\R.*
|
|
@file:OptIn(kotlin.experimental.ExperimentalNativeApi::class)
|
|
|
|
fun main() {
|
|
processUnhandledException(Error("an error"))
|
|
} |