blob: 1ca0fe1f204c11738fe6f98ac049865edcf31c4d [file]
// WITH_STDLIB
import kotlin.test.*
val sb = StringBuilder()
fun box(): String {
try {
try {
sb.appendLine("Before")
foo()
sb.appendLine("After")
} catch (e: Exception) {
sb.appendLine("Caught Exception")
}
sb.appendLine("After nested try")
} catch (e: Error) {
sb.appendLine("Caught Error")
} catch (e: Throwable) {
sb.appendLine("Caught Throwable")
}
sb.appendLine("Done")
assertEquals("""
Before
Caught Error
Done
""".trimIndent(), sb.toString())
return "OK"
}
fun foo() {
throw Error("Error happens")
sb.appendLine("After in foo()")
}