Files
kotlin-fork/compiler/testData/codegen/box/ranges/contains/generated/intDownTo.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

45 lines
1.7 KiB
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
// Auto-generated by GenerateInRangeExpressionTestData. Do not edit!
// WITH_RUNTIME
val range0 = 3 downTo 1
val range1 = 1 downTo 3
val element0 = 1
fun box(): String {
testR0xE0()
testR1xE0()
return "OK"
}
fun testR0xE0() {
// with possible local optimizations
if (1 in 3 downTo 1 != range0.contains(1)) throw AssertionError()
if (1 !in 3 downTo 1 != !range0.contains(1)) throw AssertionError()
if (!(1 in 3 downTo 1) != !range0.contains(1)) throw AssertionError()
if (!(1 !in 3 downTo 1) != range0.contains(1)) throw AssertionError()
// no local optimizations
if (element0 in 3 downTo 1 != range0.contains(element0)) throw AssertionError()
if (element0 !in 3 downTo 1 != !range0.contains(element0)) throw AssertionError()
if (!(element0 in 3 downTo 1) != !range0.contains(element0)) throw AssertionError()
if (!(element0 !in 3 downTo 1) != range0.contains(element0)) throw AssertionError()
}
fun testR1xE0() {
// with possible local optimizations
if (1 in 1 downTo 3 != range1.contains(1)) throw AssertionError()
if (1 !in 1 downTo 3 != !range1.contains(1)) throw AssertionError()
if (!(1 in 1 downTo 3) != !range1.contains(1)) throw AssertionError()
if (!(1 !in 1 downTo 3) != range1.contains(1)) throw AssertionError()
// no local optimizations
if (element0 in 1 downTo 3 != range1.contains(element0)) throw AssertionError()
if (element0 !in 1 downTo 3 != !range1.contains(element0)) throw AssertionError()
if (!(element0 in 1 downTo 3) != !range1.contains(element0)) throw AssertionError()
if (!(element0 !in 1 downTo 3) != range1.contains(element0)) throw AssertionError()
}