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

17 lines
216 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"
}