Files
kotlin-fork/compiler/testData/codegen/box/ranges/literal/inexactSteppedDownTo.kt
T
Juan Chen aba7706dec [FIR] fix test module set up (this fixes 193 BB tests)
Added creation and initialization of the test module and its dependencies.
When looking at the emptyProgression test,
I found that getProgressionLastElement was not found,
which should be resolved from the dependencies.
2020-03-26 10:30:47 +03:00

55 lines
1.4 KiB
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
// WITH_RUNTIME
fun box(): String {
val list1 = ArrayList<Int>()
for (i in 8 downTo 3 step 2) {
list1.add(i)
if (list1.size > 23) break
}
if (list1 != listOf<Int>(8, 6, 4)) {
return "Wrong elements for 8 downTo 3 step 2: $list1"
}
val list2 = ArrayList<Int>()
for (i in 8.toByte() downTo 3.toByte() step 2) {
list2.add(i)
if (list2.size > 23) break
}
if (list2 != listOf<Int>(8, 6, 4)) {
return "Wrong elements for 8.toByte() downTo 3.toByte() step 2: $list2"
}
val list3 = ArrayList<Int>()
for (i in 8.toShort() downTo 3.toShort() step 2) {
list3.add(i)
if (list3.size > 23) break
}
if (list3 != listOf<Int>(8, 6, 4)) {
return "Wrong elements for 8.toShort() downTo 3.toShort() step 2: $list3"
}
val list4 = ArrayList<Long>()
for (i in 8L downTo 3L step 2L) {
list4.add(i)
if (list4.size > 23) break
}
if (list4 != listOf<Long>(8, 6, 4)) {
return "Wrong elements for 8L downTo 3L step 2L: $list4"
}
val list5 = ArrayList<Char>()
for (i in 'd' downTo 'a' step 2) {
list5.add(i)
if (list5.size > 23) break
}
if (list5 != listOf<Char>('d', 'b')) {
return "Wrong elements for 'd' downTo 'a' step 2: $list5"
}
return "OK"
}