Files
kotlin/compiler/testData/diagnostics/tests/controlFlowAnalysis/doWhileNotDefined.kt
2017-10-02 10:04:16 +03:00

7 lines
174 B
Kotlin
Vendored

fun test(cond1: Boolean) {
do {
if (cond1) continue
val cond2 = false
} while (<!UNINITIALIZED_VARIABLE!>cond2<!>) // cond2 may be not defined here
}