Files
kotlin-fork/backend.native/tests/codegen/try/catch4.kt
T
2017-10-20 18:25:05 +03:00

19 lines
387 B
Kotlin

package codegen.`try`.catch4
import kotlin.test.*
@Test fun runTest() {
try {
println("Before")
throw Error("Error happens")
println("After")
} catch (e: Exception) {
println("Caught Exception")
} catch (e: Error) {
println("Caught Error")
} catch (e: Throwable) {
println("Caught Throwable")
}
println("Done")
}