Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
06ab8cc69e303e70578de24dd9a1cf4ebafff93a
/
.
/
compiler
/
testData
/
codegen
/
box
/
arrays
/
arrayPlusAssign.kt
blob: 9a243990fd5b7e0b322e8250113fe7407405f961 [
file
]
fun box
():
String
{
val s
=
IntArray
(
1
)
s
[
0
]
=
5
s
[
0
]
+=
7
return
if
(
s
[
0
]
==
12
)
"OK"
else
"Fail ${s[0]}"
}