Files
kotlin-fork/compiler/testData/codegen/box/arrays/kt55984.kt
T
2023-01-18 11:52:43 +00:00

11 lines
213 B
Kotlin
Vendored

// 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"
}