Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
intrinsics
/
stringFromCollection.kt
blob: a889f52b9c7c4018e9b7fc66c0d62386f89ce0c3 [
file
]
// KJS_WITH_FULL_RUNTIME
fun box
():
String
{
val list
=
ArrayList
<
String
>()
list
.
add
(
"0"
)
list
[
0
][
0
]
list
[
0
].
length
return
"OK"
}