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

10 lines
136 B
Kotlin
Vendored

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