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

10 lines
149 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
fun box(): String {
var s = ""
for (c in StringBuilder("OK")) {
s += c
}
return s
}