71 lines
2.1 KiB
Kotlin
71 lines
2.1 KiB
Kotlin
// Auto-generated by org.jetbrains.jet.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
|
|
import java.util.ArrayList
|
|
import java.lang as j
|
|
|
|
fun box(): String {
|
|
val list1 = ArrayList<Int>()
|
|
for (i in 3..9 step 2) {
|
|
list1.add(i)
|
|
if (list1.size() > 23) break
|
|
}
|
|
if (list1 != listOf<Int>(3, 5, 7, 9)) {
|
|
return "Wrong elements for 3..9 step 2: $list1"
|
|
}
|
|
|
|
val list2 = ArrayList<Byte>()
|
|
for (i in 3.toByte()..9.toByte() step 2) {
|
|
list2.add(i)
|
|
if (list2.size() > 23) break
|
|
}
|
|
if (list2 != listOf<Byte>(3, 5, 7, 9)) {
|
|
return "Wrong elements for 3.toByte()..9.toByte() step 2: $list2"
|
|
}
|
|
|
|
val list3 = ArrayList<Short>()
|
|
for (i in 3.toShort()..9.toShort() step 2) {
|
|
list3.add(i)
|
|
if (list3.size() > 23) break
|
|
}
|
|
if (list3 != listOf<Short>(3, 5, 7, 9)) {
|
|
return "Wrong elements for 3.toShort()..9.toShort() step 2: $list3"
|
|
}
|
|
|
|
val list4 = ArrayList<Long>()
|
|
for (i in 3.toLong()..9.toLong() step 2.toLong()) {
|
|
list4.add(i)
|
|
if (list4.size() > 23) break
|
|
}
|
|
if (list4 != listOf<Long>(3, 5, 7, 9)) {
|
|
return "Wrong elements for 3.toLong()..9.toLong() step 2.toLong(): $list4"
|
|
}
|
|
|
|
val list5 = ArrayList<Char>()
|
|
for (i in 'c'..'g' step 2) {
|
|
list5.add(i)
|
|
if (list5.size() > 23) break
|
|
}
|
|
if (list5 != listOf<Char>('c', 'e', 'g')) {
|
|
return "Wrong elements for 'c'..'g' step 2: $list5"
|
|
}
|
|
|
|
val list6 = ArrayList<Double>()
|
|
for (i in 4.0..6.0 step 0.5) {
|
|
list6.add(i)
|
|
if (list6.size() > 23) break
|
|
}
|
|
if (list6 != listOf<Double>(4.0, 4.5, 5.0, 5.5, 6.0)) {
|
|
return "Wrong elements for 4.0..6.0 step 0.5: $list6"
|
|
}
|
|
|
|
val list7 = ArrayList<Float>()
|
|
for (i in 4.0.toFloat()..6.0.toFloat() step 0.5.toFloat()) {
|
|
list7.add(i)
|
|
if (list7.size() > 23) break
|
|
}
|
|
if (list7 != listOf<Float>(4.0.toFloat(), 4.5.toFloat(), 5.0.toFloat(), 5.5.toFloat(), 6.0.toFloat())) {
|
|
return "Wrong elements for 4.0.toFloat()..6.0.toFloat() step 0.5.toFloat(): $list7"
|
|
}
|
|
|
|
return "OK"
|
|
}
|