Files
kotlin-fork/compiler/testData/codegen/box/deadCodeElimination/kt14357.kt
T
2018-06-28 12:26:41 +02:00

11 lines
182 B
Kotlin
Vendored

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