Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
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"
}