// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_STDLIB val MaxI = Int.MAX_VALUE val MaxB = Byte.MAX_VALUE val MaxS = Short.MAX_VALUE val MaxL = Long.MAX_VALUE val MaxC = Char.MAX_VALUE fun box(): String { val list1 = ArrayList() for (i in (MaxI - 5)..MaxI step 3) { list1.add(i) if (list1.size > 23) break } if (list1 != listOf(MaxI - 5, MaxI - 2)) { return "Wrong elements for (MaxI - 5)..MaxI step 3: $list1" } val list2 = ArrayList() for (i in (MaxB - 5).toByte()..MaxB step 3) { list2.add(i) if (list2.size > 23) break } if (list2 != listOf((MaxB - 5).toInt(), (MaxB - 2).toInt())) { return "Wrong elements for (MaxB - 5).toByte()..MaxB step 3: $list2" } val list3 = ArrayList() for (i in (MaxS - 5).toShort()..MaxS step 3) { list3.add(i) if (list3.size > 23) break } if (list3 != listOf((MaxS - 5).toInt(), (MaxS - 2).toInt())) { return "Wrong elements for (MaxS - 5).toShort()..MaxS step 3: $list3" } val list4 = ArrayList() for (i in (MaxL - 5).toLong()..MaxL step 3) { list4.add(i) if (list4.size > 23) break } if (list4 != listOf((MaxL - 5).toLong(), (MaxL - 2).toLong())) { return "Wrong elements for (MaxL - 5).toLong()..MaxL step 3: $list4" } val list5 = ArrayList() for (i in (MaxC - 5)..MaxC step 3) { list5.add(i) if (list5.size > 23) break } if (list5 != listOf((MaxC - 5), (MaxC - 2))) { return "Wrong elements for (MaxC - 5)..MaxC step 3: $list5" } return "OK" }