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

18 lines
306 B
Kotlin

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