Files
kotlin-fork/compiler/testData/codegen/box/nothingValue/inNestedCall.kt
T
2020-04-21 21:00:16 +03:00

6 lines
153 B
Kotlin
Vendored

fun nestedNothing(s: String) =
"" + if (s == "OK") s else barf()
fun barf(): Nothing = throw NullPointerException()
fun box() = nestedNothing("OK")