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

10 lines
137 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_VALUE
fun foo(): Int {
val i: Int
var j = 0
do {
i = ++j
} while (j < 5)
return i
}