blob: c5244959f60481ab74ec64818edf2c8c66f4fffb [file] [log] [blame]
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"
}