blob: 695a3a50187596e5164503b2de81ceccd8af8a52 [file]
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"
}