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

9 lines
126 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_VALUE
fun foo(k: Int): Int {
val i: Int
for (j in 1..k) {
i = j
}
return i
}