blob: e3943574e160fd029d9f28740f951b639262c01a [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 {
sb.appendLine(foo())
assertEquals("""
Done
Finally
0
""".trimIndent(), sb.toString())
return "OK"
}
fun foo(): Int {
try {
sb.appendLine("Done")
return 0
} finally {
sb.appendLine("Finally")
}
sb.appendLine("After")
return 1
}