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

18 lines
217 B
Kotlin
Vendored

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