Files
kotlin/compiler/testData/codegen/box/functions/coerceVoidToArray.kt
2015-10-12 13:30:16 +03:00

17 lines
220 B
Kotlin
Vendored

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"
}