Files
kotlin-fork/compiler/testData/codegen/box/ranges/expression/emptyDownto.kt
T
Juan Chen 9dd8eda1c9 [FIR]: fix library methods in packages
Library methods such as 'listOf' are resolved
to have the package fragments as their parents,
but JVM expects their containing file classes as parents.
This fix generates those file classes and
uses them as parent replacements for such library methods.
2020-02-20 14:24:02 +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 10
for (i in range1) {
list1.add(i)
if (list1.size > 23) break
}
if (list1 != listOf<Int>()) {
return "Wrong elements for 5 downTo 10: $list1"
}
val list2 = ArrayList<Int>()
val range2 = 5.toByte() downTo 10.toByte()
for (i in range2) {
list2.add(i)
if (list2.size > 23) break
}
if (list2 != listOf<Int>()) {
return "Wrong elements for 5.toByte() downTo 10.toByte(): $list2"
}
val list3 = ArrayList<Int>()
val range3 = 5.toShort() downTo 10.toShort()
for (i in range3) {
list3.add(i)
if (list3.size > 23) break
}
if (list3 != listOf<Int>()) {
return "Wrong elements for 5.toShort() downTo 10.toShort(): $list3"
}
val list4 = ArrayList<Long>()
val range4 = 5L downTo 10L
for (i in range4) {
list4.add(i)
if (list4.size > 23) break
}
if (list4 != listOf<Long>()) {
return "Wrong elements for 5L downTo 10L: $list4"
}
val list5 = ArrayList<Char>()
val range5 = 'a' downTo 'z'
for (i in range5) {
list5.add(i)
if (list5.size > 23) break
}
if (list5 != listOf<Char>()) {
return "Wrong elements for 'a' downTo 'z': $list5"
}
return "OK"
}