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

15 lines
265 B
Kotlin

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