76 lines
2.1 KiB
Kotlin
Vendored
76 lines
2.1 KiB
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
// TODO: muted automatically, investigate should it be ran for JVM_IR or not
|
|
// IGNORE_BACKEND: JVM_IR
|
|
|
|
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
|
|
// WITH_RUNTIME
|
|
|
|
|
|
|
|
fun box(): String {
|
|
val list1 = ArrayList<Int>()
|
|
for (i in (3..5).reversed()) {
|
|
list1.add(i)
|
|
if (list1.size > 23) break
|
|
}
|
|
if (list1 != listOf<Int>(5, 4, 3)) {
|
|
return "Wrong elements for (3..5).reversed(): $list1"
|
|
}
|
|
|
|
val list2 = ArrayList<Int>()
|
|
for (i in (3.toShort()..5.toShort()).reversed()) {
|
|
list2.add(i)
|
|
if (list2.size > 23) break
|
|
}
|
|
if (list2 != listOf<Int>(5, 4, 3)) {
|
|
return "Wrong elements for (3.toShort()..5.toShort()).reversed(): $list2"
|
|
}
|
|
|
|
val list3 = ArrayList<Long>()
|
|
for (i in (3L..5L).reversed()) {
|
|
list3.add(i)
|
|
if (list3.size > 23) break
|
|
}
|
|
if (list3 != listOf<Long>(5, 4, 3)) {
|
|
return "Wrong elements for (3L..5L).reversed(): $list3"
|
|
}
|
|
|
|
val list4 = ArrayList<Char>()
|
|
for (i in ('a'..'c').reversed()) {
|
|
list4.add(i)
|
|
if (list4.size > 23) break
|
|
}
|
|
if (list4 != listOf<Char>('c', 'b', 'a')) {
|
|
return "Wrong elements for ('a'..'c').reversed(): $list4"
|
|
}
|
|
|
|
val list5 = ArrayList<UInt>()
|
|
for (i in (3u..5u).reversed()) {
|
|
list5.add(i)
|
|
if (list5.size > 23) break
|
|
}
|
|
if (list5 != listOf<UInt>(5u, 4u, 3u)) {
|
|
return "Wrong elements for (3u..5u).reversed(): $list5"
|
|
}
|
|
|
|
val list6 = ArrayList<UInt>()
|
|
for (i in (3u.toUShort()..5u.toUShort()).reversed()) {
|
|
list6.add(i)
|
|
if (list6.size > 23) break
|
|
}
|
|
if (list6 != listOf<UInt>(5u, 4u, 3u)) {
|
|
return "Wrong elements for (3u.toUShort()..5u.toUShort()).reversed(): $list6"
|
|
}
|
|
|
|
val list7 = ArrayList<ULong>()
|
|
for (i in (3uL..5uL).reversed()) {
|
|
list7.add(i)
|
|
if (list7.size > 23) break
|
|
}
|
|
if (list7 != listOf<ULong>(5u, 4u, 3u)) {
|
|
return "Wrong elements for (3uL..5uL).reversed(): $list7"
|
|
}
|
|
|
|
return "OK"
|
|
}
|