Files
kotlin/compiler/testData/codegen/box/strings/kt5389_stringBuilderGet.kt
2019-11-19 11:00:09 +03:00

7 lines
144 B
Kotlin
Vendored

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