Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/deadCode/reassignementInUnreachableCode.fir.kt
T
2023-07-05 06:56:11 +00:00

7 lines
123 B
Kotlin
Vendored

// ISSUE: KT-47567
fun test(x: Int) {
while (true)
<!UNREACHABLE_CODE!><!VAL_REASSIGNMENT!>x<!> =<!> break
}