10 lines
180 B
Kotlin
Vendored
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"
|
|
}
|