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

49 lines
1.2 KiB
Kotlin
Vendored

// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
// WITH_STDLIB
fun box(): String {
val list1 = ArrayList<UInt>()
val range1 = 5u downTo 5u
for (i in range1) {
list1.add(i)
if (list1.size > 23) break
}
if (list1 != listOf<UInt>(5u)) {
return "Wrong elements for 5u downTo 5u: $list1"
}
val list2 = ArrayList<UInt>()
val range2 = 5u.toUByte() downTo 5u.toUByte()
for (i in range2) {
list2.add(i)
if (list2.size > 23) break
}
if (list2 != listOf<UInt>(5u)) {
return "Wrong elements for 5u.toUByte() downTo 5u.toUByte(): $list2"
}
val list3 = ArrayList<UInt>()
val range3 = 5u.toUShort() downTo 5u.toUShort()
for (i in range3) {
list3.add(i)
if (list3.size > 23) break
}
if (list3 != listOf<UInt>(5u)) {
return "Wrong elements for 5u.toUShort() downTo 5u.toUShort(): $list3"
}
val list4 = ArrayList<ULong>()
val range4 = 5uL downTo 5uL
for (i in range4) {
list4.add(i)
if (list4.size > 23) break
}
if (list4 != listOf<ULong>(5uL)) {
return "Wrong elements for 5uL downTo 5uL: $list4"
}
return "OK"
}