Files
kotlin-fork/compiler/testData/diagnostics/tests/reassignment/foronly.fir.kt
T
2020-06-19 15:53:09 +03:00

9 lines
155 B
Kotlin
Vendored

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