Files
kotlin/compiler/testData/codegen/box/arrays/forEachLongArray.kt
2019-02-19 09:59:42 +03:00

7 lines
120 B
Kotlin
Vendored

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