Files
kotlin-fork/backend.native/tests/external/codegen/box/deadCodeElimination/kt14357.kt
T
2017-03-13 15:31:46 +03:00

10 lines
156 B
Kotlin

fun box(): String {
if (false) {
try {
null!!
} catch (e: Exception) {
throw e
}
}
return "OK"
}