Files
kotlin-fork/compiler/testData/codegen/box/strings/kt5389_stringBuilderGet.kt
T
2018-06-09 19:15:38 +03:00

6 lines
114 B
Kotlin
Vendored

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