Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/forInCharSequence.kt
T

9 lines
124 B
Kotlin
Vendored

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