Files
kotlin-fork/native/native.tests/testData/standalone/termination/processUnhandledException.kt
T

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"))
}