Files
kotlin-fork/compiler/testData/diagnostics/tests/reassignment/whiletrue.fir.kt
T

12 lines
160 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_VALUE
fun foo(): Int {
val i: Int
var j = 0
while (true) {
i = ++j
if (j > 5) break
}
return i
}