blob: 69f944f1db74c33373a68691984cebf0e86016af [file]
// WITH_STDLIB
// TARGET_BACKEND: WASM
// USE_NEW_EXCEPTION_HANDLING_PROPOSAL
// TODO: remove the test when KT-66906 will be resolved
import kotlin.test.*
val sb = StringBuilder()
fun box(): String {
try {
try {
sb.appendLine("Try")
throw Error("Error happens")
sb.appendLine("After throw")
} finally {
sb.appendLine("Finally")
}
sb.appendLine("After nested try")
} catch (e: Error) {
sb.appendLine("Caught Error")
}
sb.appendLine("Done")
assertEquals("""
Try
Finally
Caught Error
Done
""".trimIndent(), sb.toString())
return "OK"
}