Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/deadCode/smartCastAfterDeadCode.fir.kt
T
Brian Norman 6df97dd199 [FIR] Add test cases to prove resolution of backlog tickets
^KT-41728 Fixed
^KT-46586 Fixed
^KT-49696 Fixed
^KT-51160 Fixed
^KT-53308 Fixed
2023-11-09 19:28:26 +00:00

11 lines
157 B
Kotlin
Vendored

// WITH_STDLIB
// ISSUE: KT-41728
fun foo(a: String?) {
if (a == null) {
return
<!UNREACHABLE_CODE!>"hi".length<!>
}
a.length
}