c7435ba760
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.
33 lines
769 B
Kotlin
Vendored
33 lines
769 B
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 MaxUL = ULong.MAX_VALUE
|
|
val MinUL = ULong.MIN_VALUE
|
|
|
|
fun box(): String {
|
|
val list1 = ArrayList<UInt>()
|
|
val range1 = MaxUI..MinUI
|
|
for (i in range1) {
|
|
list1.add(i)
|
|
if (list1.size > 23) break
|
|
}
|
|
if (list1 != listOf<UInt>()) {
|
|
return "Wrong elements for MaxUI..MinUI: $list1"
|
|
}
|
|
|
|
val list2 = ArrayList<ULong>()
|
|
val range2 = MaxUL..MinUL
|
|
for (i in range2) {
|
|
list2.add(i)
|
|
if (list2.size > 23) break
|
|
}
|
|
if (list2 != listOf<ULong>()) {
|
|
return "Wrong elements for MaxUL..MinUL: $list2"
|
|
}
|
|
|
|
return "OK"
|
|
}
|