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

7 lines
123 B
Kotlin
Vendored

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