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