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

12 lines
174 B
Kotlin
Vendored

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