Files
kotlin/compiler/testData/codegen/box/arrays/forEachByteArray.kt
2018-09-18 14:36:20 +03:00

7 lines
120 B
Kotlin
Vendored

fun box(): String {
for (x in ByteArray(5)) {
if (x != 0.toByte()) return "Fail $x"
}
return "OK"
}