1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
10 lines
195 B
Kotlin
10 lines
195 B
Kotlin
// 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"
|
|
}
|