c7435ba760
We are going to deprecate `WITH_RUNTIME` directive. The main reason behind this change is that `WITH_STDLIB` directive better describes its meaning, specifically it will add kotlin stdlib to test's classpath.
54 lines
1.4 KiB
Kotlin
Vendored
54 lines
1.4 KiB
Kotlin
Vendored
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
|
|
// WITH_STDLIB
|
|
|
|
|
|
|
|
fun box(): String {
|
|
val list1 = ArrayList<Int>()
|
|
for (i in 9 downTo 3) {
|
|
list1.add(i)
|
|
if (list1.size > 23) break
|
|
}
|
|
if (list1 != listOf<Int>(9, 8, 7, 6, 5, 4, 3)) {
|
|
return "Wrong elements for 9 downTo 3: $list1"
|
|
}
|
|
|
|
val list2 = ArrayList<Int>()
|
|
for (i in 9.toByte() downTo 3.toByte()) {
|
|
list2.add(i)
|
|
if (list2.size > 23) break
|
|
}
|
|
if (list2 != listOf<Int>(9, 8, 7, 6, 5, 4, 3)) {
|
|
return "Wrong elements for 9.toByte() downTo 3.toByte(): $list2"
|
|
}
|
|
|
|
val list3 = ArrayList<Int>()
|
|
for (i in 9.toShort() downTo 3.toShort()) {
|
|
list3.add(i)
|
|
if (list3.size > 23) break
|
|
}
|
|
if (list3 != listOf<Int>(9, 8, 7, 6, 5, 4, 3)) {
|
|
return "Wrong elements for 9.toShort() downTo 3.toShort(): $list3"
|
|
}
|
|
|
|
val list4 = ArrayList<Long>()
|
|
for (i in 9L downTo 3L) {
|
|
list4.add(i)
|
|
if (list4.size > 23) break
|
|
}
|
|
if (list4 != listOf<Long>(9, 8, 7, 6, 5, 4, 3)) {
|
|
return "Wrong elements for 9L downTo 3L: $list4"
|
|
}
|
|
|
|
val list5 = ArrayList<Char>()
|
|
for (i in 'g' downTo 'c') {
|
|
list5.add(i)
|
|
if (list5.size > 23) break
|
|
}
|
|
if (list5 != listOf<Char>('g', 'f', 'e', 'd', 'c')) {
|
|
return "Wrong elements for 'g' downTo 'c': $list5"
|
|
}
|
|
|
|
return "OK"
|
|
}
|