Files
kotlin-fork/backend.native/tests/runtime/basic/exit.kt
T
2017-09-07 18:48:10 +03:00

7 lines
178 B
Kotlin

import kotlin.system.*
fun main(args: Array<String>) {
exitProcess(42)
@Suppress("UNREACHABLE_CODE")
throw RuntimeException("Exit function call returned normally")
}