Files
kotlin-fork/compiler/testData/codegen/box/ranges/unsigned/expression/maxValueToMaxValue.kt
T
pyos 4a03006162 Generate min/max constants as non-const in ranges tests
in order to make them appear as unknown values to codegen.
2020-10-07 12:53:00 +02:00

32 lines
750 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
// WITH_RUNTIME
val MaxUI = UInt.MAX_VALUE
val MaxUL = ULong.MAX_VALUE
fun box(): String {
val list1 = ArrayList<UInt>()
val range1 = MaxUI..MaxUI
for (i in range1) {
list1.add(i)
if (list1.size > 23) break
}
if (list1 != listOf<UInt>(MaxUI)) {
return "Wrong elements for MaxUI..MaxUI: $list1"
}
val list2 = ArrayList<ULong>()
val range2 = MaxUL..MaxUL
for (i in range2) {
list2.add(i)
if (list2.size > 23) break
}
if (list2 != listOf<ULong>(MaxUL)) {
return "Wrong elements for MaxUL..MaxUL: $list2"
}
return "OK"
}