blob: 660ea0d44ec58031b7c1071e780622b0c0656579 [file]
fun a(): String? = null
fun b(): Nothing = throw Exception()
fun foo(): String = a() ?: b()
fun box(): String {
try {
foo()
} catch (e: Exception) {
return "OK"
}
return "Fail"
}