Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/forInCharSequence.kt
T
2021-10-01 17:18:49 +03:00

12 lines
217 B
Kotlin
Vendored

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