Files
kotlin-fork/compiler/testData/codegen/box/ranges/forInStringVarUpdatedInLoopBody.kt
T

11 lines
149 B
Kotlin
Vendored

// WITH_RUNTIME
fun box(): String {
var str = "OK"
var r = ""
for (ch in str) {
r += ch
str = "zzz"
}
return r
}