Files
kotlin-fork/js/js.translator/testData/box/expression/when/whenAsExpressionWithThrow.kt
T
2018-04-19 13:17:28 +03:00

24 lines
395 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// EXPECTED_REACHABLE_NODES: 1109
package foo
fun box(): String {
try {
(when (1) {
3 -> {
3
}
1 -> {
throw Exception()
}
else -> {
return "fail1"
}
})
} catch (e: Exception) {
return "OK"
}
return "fail2"
}