Files
kotlin-fork/compiler/testData/codegen/box/arrays/forEachShortArray.kt
T
2018-06-09 19:15:38 +03:00

8 lines
147 B
Kotlin
Vendored

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