Files
kotlin-fork/compiler/testData/codegen/box/ranges/unsigned/literal/progressionMaxValueToMinValue.kt
T
Ivan Kylchik c7435ba760 Replace all occurrences of WITH_RUNTIME with WITH_STDLIB
We are going to deprecate `WITH_RUNTIME` directive. The main reason
behind this change is that `WITH_STDLIB` directive better describes
its meaning, specifically it will add kotlin stdlib to test's classpath.
2021-11-17 15:26:38 +03:00

53 lines
1.3 KiB
Kotlin
Vendored

// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
// WITH_STDLIB
val MaxUI = UInt.MAX_VALUE
val MinUI = UInt.MIN_VALUE
val MaxUB = UByte.MAX_VALUE
val MinUB = UByte.MIN_VALUE
val MaxUS = UShort.MAX_VALUE
val MinUS = UShort.MIN_VALUE
val MaxUL = ULong.MAX_VALUE
val MinUL = ULong.MIN_VALUE
fun box(): String {
val list1 = ArrayList<UInt>()
for (i in MaxUI..MinUI step 1) {
list1.add(i)
if (list1.size > 23) break
}
if (list1 != listOf<UInt>()) {
return "Wrong elements for MaxUI..MinUI step 1: $list1"
}
val list2 = ArrayList<UInt>()
for (i in MaxUB..MinUB step 1) {
list2.add(i)
if (list2.size > 23) break
}
if (list2 != listOf<UInt>()) {
return "Wrong elements for MaxUB..MinUB step 1: $list2"
}
val list3 = ArrayList<UInt>()
for (i in MaxUS..MinUS step 1) {
list3.add(i)
if (list3.size > 23) break
}
if (list3 != listOf<UInt>()) {
return "Wrong elements for MaxUS..MinUS step 1: $list3"
}
val list4 = ArrayList<ULong>()
for (i in MaxUL..MinUL step 1) {
list4.add(i)
if (list4.size > 23) break
}
if (list4 != listOf<ULong>()) {
return "Wrong elements for MaxUL..MinUL step 1: $list4"
}
return "OK"
}