blob: ecebac25501d8d38d7f50d10d6cfe421e0c35abc [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")
} finally {
sb.appendLine("Finally")
}
sb.appendLine("Done")
assertEquals("""
Try
Finally
Done
""".trimIndent(), sb.toString())
return "OK"
}