Files
kotlin-fork/compiler/testData/codegen/box/intrinsics/stringFromCollection.kt
T
2019-11-19 11:00:09 +03:00

10 lines
180 B
Kotlin
Vendored

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