Files
kotlin-fork/backend.native/tests/runtime/basic/throw0.kt
T
2016-11-22 14:36:09 +03:00

9 lines
232 B
Kotlin

fun main(args : Array<String>) {
val cond = 1
if (cond == 2) throw RuntimeException()
if (cond == 3) throw NoSuchElementException("no such element")
if (cond == 4) throw Error("error happens")
println("Done")
}