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

7 lines
122 B
Kotlin
Vendored

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