Files
kotlin-fork/compiler/testData/codegen/box/ranges/expression/oneElementDownTo.kt
T
Mikhail Glukhikh a4c7619c89 [FIR2IR] Introduce & use FirBuiltInsPackageFragment
Without this commit, JVM name mapping logic in BE does not work for FIR,
because FIR cannot use old BuiltInsPackageFragmentImpl descriptor.
In this commit we add our own implementation thus fixing
a pack of FIR black box tests.
2020-03-24 10:37:53 +03:00

60 lines
1.5 KiB
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
// WITH_RUNTIME
fun box(): String {
val list1 = ArrayList<Int>()
val range1 = 5 downTo 5
for (i in range1) {
list1.add(i)
if (list1.size > 23) break
}
if (list1 != listOf<Int>(5)) {
return "Wrong elements for 5 downTo 5: $list1"
}
val list2 = ArrayList<Int>()
val range2 = 5.toByte() downTo 5.toByte()
for (i in range2) {
list2.add(i)
if (list2.size > 23) break
}
if (list2 != listOf<Int>(5)) {
return "Wrong elements for 5.toByte() downTo 5.toByte(): $list2"
}
val list3 = ArrayList<Int>()
val range3 = 5.toShort() downTo 5.toShort()
for (i in range3) {
list3.add(i)
if (list3.size > 23) break
}
if (list3 != listOf<Int>(5)) {
return "Wrong elements for 5.toShort() downTo 5.toShort(): $list3"
}
val list4 = ArrayList<Long>()
val range4 = 5L downTo 5L
for (i in range4) {
list4.add(i)
if (list4.size > 23) break
}
if (list4 != listOf<Long>(5L)) {
return "Wrong elements for 5L downTo 5L: $list4"
}
val list5 = ArrayList<Char>()
val range5 = 'k' downTo 'k'
for (i in range5) {
list5.add(i)
if (list5.size > 23) break
}
if (list5 != listOf<Char>('k')) {
return "Wrong elements for 'k' downTo 'k': $list5"
}
return "OK"
}