Files
kotlin-fork/compiler/testData/codegen/box/ranges/unsigned/expression/maxValueMinusTwoToMaxValue.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

31 lines
800 B
Kotlin
Vendored

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