Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
arrays
/
kt55984.kt
blob: 4bc4b60500aedccd5a271bc59d7c9aeb1b8a260d [
file
]
// WITH_STDLIB
fun box
()
:
String
{
for
(
iter
in
0
until
10
)
{
val destination
=
ByteArray
(
8
)
if
(
destination
[
0
]
!=
0.toByte
())
return
"FAIL"
destination
[
0
]
=
1
}
return
"OK"
}