Files
kotlin-fork/compiler/testData/codegen/box/strings/kt5389_stringBuilderGet.kt
T
2018-09-21 18:16:03 +03:00

5 lines
89 B
Kotlin
Vendored

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