blob: d747dcdc7a3e4e4d3d311b12cbe28565d9486667 [file]
// TARGET_BACKEND: WASM
// USE_NEW_EXCEPTION_HANDLING_PROPOSAL
// WASM_FAILS_IN_SINGLE_MODULE_MODE
// TODO: remove the test when KT-66906 will be resolved
// FILE: 1.kt
inline fun <R> performWithFinally(finally: () -> R) : R {
try {
throw RuntimeException("1")
} catch (e: RuntimeException) {
throw RuntimeException("2")
} finally {
return finally()
}
}
// FILE: 2.kt
inline fun test2Inline() = performWithFinally { "OK" }
fun box(): String {
return test2Inline()
}