blob: 26a39d78120a1dffe06620208c7fb03a7b21a525 [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 {
sb.appendLine("Try")
throw Error("Error happens")
sb.appendLine("After throw")
} catch (e: Error) {
sb.appendLine("Caught Error")
} finally {
sb.appendLine("Finally")
}
sb.appendLine("Done")
assertEquals("""
Try
Caught Error
Finally
Done
""".trimIndent(), sb.toString())
return "OK"
}