Files
kotlin-fork/compiler/testData/codegen/box/strings/kt5389_stringBuilderGet.kt
T
2021-10-02 06:14:35 +00:00

8 lines
171 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// WASM_MUTE_REASON: STDLIB_TEXT
// KJS_WITH_FULL_RUNTIME
fun box(): String {
val sb = StringBuilder("OK")
return "${sb.get(0)}${sb[1]}"
}