Files
kotlin-fork/js/js.translator/testData/box/expression/when/whenAsExpressionWithThrow.kt
T
2016-09-29 12:00:40 +03:00

22 lines
336 B
Kotlin
Vendored

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