13 lines
273 B
Kotlin
13 lines
273 B
Kotlin
package runtime.basic.throw0
|
|
|
|
import kotlin.test.*
|
|
|
|
@Test fun runTest() {
|
|
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")
|
|
}
|