Files
kotlin/compiler/testData/diagnostics/tests/controlFlowAnalysis/deadCode/deadCodeInIf.fir.kt

12 lines
160 B
Kotlin
Vendored

fun testIf() {
if (todo()) 1 else 2
}
fun testIf1(b: Boolean) {
if (b) todo() else 1
bar()
}
fun todo(): Nothing = throw Exception()
fun bar() {}