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

11 lines
171 B
Kotlin
Vendored

package foo
fun box(): String {
try {
if (true) throw Exception() else "fail1"
}
catch (e: Exception) {
return "OK"
}
return "fail2"
}