Files
kotlin-fork/compiler/testData/codegen/box/functions/coerceVoidToArray.kt
T
2021-09-08 19:56:38 +03:00

18 lines
221 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"
}