Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
arrays
/
kt33.kt
blob: 11253c2739e946db50f13f2b573064c83f9e6d9a [
file
] [
log
] [
blame
]
// DONT_TARGET_EXACT_BACKEND: WASM
// WASM_MUTE_REASON: STDLIB_COLLECTIONS
// KJS_WITH_FULL_RUNTIME
fun box
()
:
String
{
val s
=
ArrayList
<
String
>()
s
.
add
(
"foo"
)
s
[
0
]
+=
"bar"
return
if
(
s
[
0
]
==
"foobar"
)
"OK"
else
"fail"
}