Files
kotlin/compiler/testData/codegen/box/ranges/forByteProgressionWithIntIncrement.kt

10 lines
195 B
Kotlin
Vendored

// WITH_RUNTIME
fun box(): String {
for (element in 5.toByte()..1.toByte() step 255) {
return "Fail: iterating over an empty progression, element: $element"
}
return "OK"
}