Files
kotlin/compiler/testData/codegen/box/arrays/forEachShortArray.kt
2019-11-19 11:00:09 +03:00

8 lines
152 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
for (x in ShortArray(5)) {
if (x != 0.toShort()) return "Fail $x"
}
return "OK"
}