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

9 lines
150 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
fun box(): String {
val list = ArrayList<String>()
list.add("0")
list[0][0]
list[0].length
return "OK"
}