Files
kotlin/compiler/testData/codegen/box/controlStructures/forInArrayWithIndex/forInEmptyArrrayWithIndex.kt
2018-01-23 10:55:24 +03:00

11 lines
216 B
Kotlin
Vendored

// WITH_RUNTIME
val arr = intArrayOf()
fun box(): String {
val s = StringBuilder()
for ((index, x) in arr.withIndex()) {
return "Loop over empty array should not be executed"
}
return "OK"
}