Files
kotlin-fork/compiler/testData/codegen/box/deadCodeElimination/kt14357.kt
T
2018-06-19 17:09:31 +03:00

10 lines
156 B
Kotlin
Vendored

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