Files
kotlin-fork/compiler/testData/codegen/box/ranges/expression/overflowZeroDownToMaxValue.kt
T
Mark Punzalan 7efc29df7e Split up generation of test data for codegen/box/ranges into signed and
unsigned ranges/progressions.

The tests pass in JVM_IR for signed, but fail for unsigned due to
inlining being broken. We can disable the JVM_IR tests for unsigned,
while keeping them enabled for signed, to get better test coverage in
the interim until inlining is fixed.
2019-05-14 14:26:15 +02:00

32 lines
776 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
// WITH_RUNTIME
const val MaxI = Int.MAX_VALUE
const val MaxL = Long.MAX_VALUE
fun box(): String {
val list1 = ArrayList<Int>()
val range1 = 0 downTo MaxI step 3
for (i in range1) {
list1.add(i)
if (list1.size > 23) break
}
if (list1 != listOf<Int>()) {
return "Wrong elements for 0 downTo MaxI step 3: $list1"
}
val list2 = ArrayList<Long>()
val range2 = 0 downTo MaxL step 3
for (i in range2) {
list2.add(i)
if (list2.size > 23) break
}
if (list2 != listOf<Long>()) {
return "Wrong elements for 0 downTo MaxL step 3: $list2"
}
return "OK"
}