blob: 8d5aaf37a12273ece054f47bd3754df37f7f0391 [file]
// IGNORE_BACKEND: JS_IR, WASM_JS
// ^^^ Those backends don't support exitProcess()
// WITH_STDLIB
// FILE: test.kt
fun box() {
println("start")
kotlin.system.exitProcess(0)
println("unreachable")
}
// EXPECTATIONS JVM_IR
// test.kt:7 box
// test.kt:8 box
// EXPECTATIONS NATIVE
// test.kt:7 box
// test.kt:7 box
// test.kt:8 box