Files
kotlin/compiler/testData/codegen/box/ranges/forInStringVarUpdatedInLoopBody.kt
2018-06-09 19:15:38 +03:00

12 lines
174 B
Kotlin
Vendored

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