blob: e5a87cafbac542f3a952f5d28af02242b02b11c0 [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 {
val x = try {
sb.appendLine("Try")
5
} catch (e: Throwable) {
throw e
}
sb.appendLine(x)
assertEquals("""
Try
5
""".trimIndent(), sb.toString())
return "OK"
}