Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/ranges/literal/emptyDownto.kt
T
Ilya Gorbunov 6bac3e1986 Drop Ranges, Progressions, ProgressionIterators for Double and Float.
Undeprecate generic Comparable.rangeTo, but return private implementation instead.
Undeprecate contains and coerceIn for generic ranges.
2015-11-11 03:53:47 +03:00

52 lines
1.4 KiB
Kotlin
Vendored

// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
import java.util.ArrayList
fun box(): String {
val list1 = ArrayList<Int>()
for (i in 5 downTo 10) {
list1.add(i)
if (list1.size() > 23) break
}
if (list1 != listOf<Int>()) {
return "Wrong elements for 5 downTo 10: $list1"
}
val list2 = ArrayList<Int>()
for (i in 5.toByte() downTo 10.toByte()) {
list2.add(i)
if (list2.size() > 23) break
}
if (list2 != listOf<Int>()) {
return "Wrong elements for 5.toByte() downTo 10.toByte(): $list2"
}
val list3 = ArrayList<Int>()
for (i in 5.toShort() downTo 10.toShort()) {
list3.add(i)
if (list3.size() > 23) break
}
if (list3 != listOf<Int>()) {
return "Wrong elements for 5.toShort() downTo 10.toShort(): $list3"
}
val list4 = ArrayList<Long>()
for (i in 5.toLong() downTo 10.toLong()) {
list4.add(i)
if (list4.size() > 23) break
}
if (list4 != listOf<Long>()) {
return "Wrong elements for 5.toLong() downTo 10.toLong(): $list4"
}
val list5 = ArrayList<Char>()
for (i in 'a' downTo 'z') {
list5.add(i)
if (list5.size() > 23) break
}
if (list5 != listOf<Char>()) {
return "Wrong elements for 'a' downTo 'z': $list5"
}
return "OK"
}