Deprecate with error mixed Int/FP contains operator for ranges KT-22423

This commit is contained in:
Abduqodiri Qurbonzoda
2020-06-23 07:08:18 +03:00
parent ab20b3e083
commit d3fb9cc5f3
22 changed files with 1712 additions and 5903 deletions
@@ -11,38 +11,26 @@ val element0 = (-1).toByte()
val element1 = (-1).toShort()
val element2 = (-1)
val element3 = (-1).toLong()
val element4 = (-1).toFloat()
val element5 = (-1).toDouble()
val element6 = 0.toByte()
val element7 = 0.toShort()
val element8 = 0
val element9 = 0.toLong()
val element10 = 0.toFloat()
val element11 = 0.toDouble()
val element12 = 1.toByte()
val element13 = 1.toShort()
val element14 = 1
val element15 = 1.toLong()
val element16 = 1.toFloat()
val element17 = 1.toDouble()
val element18 = 2.toByte()
val element19 = 2.toShort()
val element20 = 2
val element21 = 2.toLong()
val element22 = 2.toFloat()
val element23 = 2.toDouble()
val element24 = 3.toByte()
val element25 = 3.toShort()
val element26 = 3
val element27 = 3.toLong()
val element28 = 3.toFloat()
val element29 = 3.toDouble()
val element30 = 4.toByte()
val element31 = 4.toShort()
val element32 = 4
val element33 = 4.toLong()
val element34 = 4.toFloat()
val element35 = 4.toDouble()
val element4 = 0.toByte()
val element5 = 0.toShort()
val element6 = 0
val element7 = 0.toLong()
val element8 = 1.toByte()
val element9 = 1.toShort()
val element10 = 1
val element11 = 1.toLong()
val element12 = 2.toByte()
val element13 = 2.toShort()
val element14 = 2
val element15 = 2.toLong()
val element16 = 3.toByte()
val element17 = 3.toShort()
val element18 = 3
val element19 = 3.toLong()
val element20 = 4.toByte()
val element21 = 4.toShort()
val element22 = 4
val element23 = 4.toLong()
fun box(): String {
testR0xE0()
@@ -69,18 +57,6 @@ fun box(): String {
testR0xE21()
testR0xE22()
testR0xE23()
testR0xE24()
testR0xE25()
testR0xE26()
testR0xE27()
testR0xE28()
testR0xE29()
testR0xE30()
testR0xE31()
testR0xE32()
testR0xE33()
testR0xE34()
testR0xE35()
testR1xE0()
testR1xE1()
testR1xE2()
@@ -105,18 +81,6 @@ fun box(): String {
testR1xE21()
testR1xE22()
testR1xE23()
testR1xE24()
testR1xE25()
testR1xE26()
testR1xE27()
testR1xE28()
testR1xE29()
testR1xE30()
testR1xE31()
testR1xE32()
testR1xE33()
testR1xE34()
testR1xE35()
return "OK"
}
@@ -174,10 +138,10 @@ fun testR0xE3() {
fun testR0xE4() {
// with possible local optimizations
if ((-1).toFloat() in 1 until 3 != range0.contains((-1).toFloat())) throw AssertionError()
if ((-1).toFloat() !in 1 until 3 != !range0.contains((-1).toFloat())) throw AssertionError()
if (!((-1).toFloat() in 1 until 3) != !range0.contains((-1).toFloat())) throw AssertionError()
if (!((-1).toFloat() !in 1 until 3) != range0.contains((-1).toFloat())) throw AssertionError()
if (0.toByte() in 1 until 3 != range0.contains(0.toByte())) throw AssertionError()
if (0.toByte() !in 1 until 3 != !range0.contains(0.toByte())) throw AssertionError()
if (!(0.toByte() in 1 until 3) != !range0.contains(0.toByte())) throw AssertionError()
if (!(0.toByte() !in 1 until 3) != range0.contains(0.toByte())) throw AssertionError()
// no local optimizations
if (element4 in 1 until 3 != range0.contains(element4)) throw AssertionError()
if (element4 !in 1 until 3 != !range0.contains(element4)) throw AssertionError()
@@ -187,10 +151,10 @@ fun testR0xE4() {
fun testR0xE5() {
// with possible local optimizations
if ((-1).toDouble() in 1 until 3 != range0.contains((-1).toDouble())) throw AssertionError()
if ((-1).toDouble() !in 1 until 3 != !range0.contains((-1).toDouble())) throw AssertionError()
if (!((-1).toDouble() in 1 until 3) != !range0.contains((-1).toDouble())) throw AssertionError()
if (!((-1).toDouble() !in 1 until 3) != range0.contains((-1).toDouble())) throw AssertionError()
if (0.toShort() in 1 until 3 != range0.contains(0.toShort())) throw AssertionError()
if (0.toShort() !in 1 until 3 != !range0.contains(0.toShort())) throw AssertionError()
if (!(0.toShort() in 1 until 3) != !range0.contains(0.toShort())) throw AssertionError()
if (!(0.toShort() !in 1 until 3) != range0.contains(0.toShort())) throw AssertionError()
// no local optimizations
if (element5 in 1 until 3 != range0.contains(element5)) throw AssertionError()
if (element5 !in 1 until 3 != !range0.contains(element5)) throw AssertionError()
@@ -200,10 +164,10 @@ fun testR0xE5() {
fun testR0xE6() {
// with possible local optimizations
if (0.toByte() in 1 until 3 != range0.contains(0.toByte())) throw AssertionError()
if (0.toByte() !in 1 until 3 != !range0.contains(0.toByte())) throw AssertionError()
if (!(0.toByte() in 1 until 3) != !range0.contains(0.toByte())) throw AssertionError()
if (!(0.toByte() !in 1 until 3) != range0.contains(0.toByte())) throw AssertionError()
if (0 in 1 until 3 != range0.contains(0)) throw AssertionError()
if (0 !in 1 until 3 != !range0.contains(0)) throw AssertionError()
if (!(0 in 1 until 3) != !range0.contains(0)) throw AssertionError()
if (!(0 !in 1 until 3) != range0.contains(0)) throw AssertionError()
// no local optimizations
if (element6 in 1 until 3 != range0.contains(element6)) throw AssertionError()
if (element6 !in 1 until 3 != !range0.contains(element6)) throw AssertionError()
@@ -213,10 +177,10 @@ fun testR0xE6() {
fun testR0xE7() {
// with possible local optimizations
if (0.toShort() in 1 until 3 != range0.contains(0.toShort())) throw AssertionError()
if (0.toShort() !in 1 until 3 != !range0.contains(0.toShort())) throw AssertionError()
if (!(0.toShort() in 1 until 3) != !range0.contains(0.toShort())) throw AssertionError()
if (!(0.toShort() !in 1 until 3) != range0.contains(0.toShort())) throw AssertionError()
if (0.toLong() in 1 until 3 != range0.contains(0.toLong())) throw AssertionError()
if (0.toLong() !in 1 until 3 != !range0.contains(0.toLong())) throw AssertionError()
if (!(0.toLong() in 1 until 3) != !range0.contains(0.toLong())) throw AssertionError()
if (!(0.toLong() !in 1 until 3) != range0.contains(0.toLong())) throw AssertionError()
// no local optimizations
if (element7 in 1 until 3 != range0.contains(element7)) throw AssertionError()
if (element7 !in 1 until 3 != !range0.contains(element7)) throw AssertionError()
@@ -226,10 +190,10 @@ fun testR0xE7() {
fun testR0xE8() {
// with possible local optimizations
if (0 in 1 until 3 != range0.contains(0)) throw AssertionError()
if (0 !in 1 until 3 != !range0.contains(0)) throw AssertionError()
if (!(0 in 1 until 3) != !range0.contains(0)) throw AssertionError()
if (!(0 !in 1 until 3) != range0.contains(0)) throw AssertionError()
if (1.toByte() in 1 until 3 != range0.contains(1.toByte())) throw AssertionError()
if (1.toByte() !in 1 until 3 != !range0.contains(1.toByte())) throw AssertionError()
if (!(1.toByte() in 1 until 3) != !range0.contains(1.toByte())) throw AssertionError()
if (!(1.toByte() !in 1 until 3) != range0.contains(1.toByte())) throw AssertionError()
// no local optimizations
if (element8 in 1 until 3 != range0.contains(element8)) throw AssertionError()
if (element8 !in 1 until 3 != !range0.contains(element8)) throw AssertionError()
@@ -239,10 +203,10 @@ fun testR0xE8() {
fun testR0xE9() {
// with possible local optimizations
if (0.toLong() in 1 until 3 != range0.contains(0.toLong())) throw AssertionError()
if (0.toLong() !in 1 until 3 != !range0.contains(0.toLong())) throw AssertionError()
if (!(0.toLong() in 1 until 3) != !range0.contains(0.toLong())) throw AssertionError()
if (!(0.toLong() !in 1 until 3) != range0.contains(0.toLong())) throw AssertionError()
if (1.toShort() in 1 until 3 != range0.contains(1.toShort())) throw AssertionError()
if (1.toShort() !in 1 until 3 != !range0.contains(1.toShort())) throw AssertionError()
if (!(1.toShort() in 1 until 3) != !range0.contains(1.toShort())) throw AssertionError()
if (!(1.toShort() !in 1 until 3) != range0.contains(1.toShort())) throw AssertionError()
// no local optimizations
if (element9 in 1 until 3 != range0.contains(element9)) throw AssertionError()
if (element9 !in 1 until 3 != !range0.contains(element9)) throw AssertionError()
@@ -252,10 +216,10 @@ fun testR0xE9() {
fun testR0xE10() {
// with possible local optimizations
if (0.toFloat() in 1 until 3 != range0.contains(0.toFloat())) throw AssertionError()
if (0.toFloat() !in 1 until 3 != !range0.contains(0.toFloat())) throw AssertionError()
if (!(0.toFloat() in 1 until 3) != !range0.contains(0.toFloat())) throw AssertionError()
if (!(0.toFloat() !in 1 until 3) != range0.contains(0.toFloat())) throw AssertionError()
if (1 in 1 until 3 != range0.contains(1)) throw AssertionError()
if (1 !in 1 until 3 != !range0.contains(1)) throw AssertionError()
if (!(1 in 1 until 3) != !range0.contains(1)) throw AssertionError()
if (!(1 !in 1 until 3) != range0.contains(1)) throw AssertionError()
// no local optimizations
if (element10 in 1 until 3 != range0.contains(element10)) throw AssertionError()
if (element10 !in 1 until 3 != !range0.contains(element10)) throw AssertionError()
@@ -265,10 +229,10 @@ fun testR0xE10() {
fun testR0xE11() {
// with possible local optimizations
if (0.toDouble() in 1 until 3 != range0.contains(0.toDouble())) throw AssertionError()
if (0.toDouble() !in 1 until 3 != !range0.contains(0.toDouble())) throw AssertionError()
if (!(0.toDouble() in 1 until 3) != !range0.contains(0.toDouble())) throw AssertionError()
if (!(0.toDouble() !in 1 until 3) != range0.contains(0.toDouble())) throw AssertionError()
if (1.toLong() in 1 until 3 != range0.contains(1.toLong())) throw AssertionError()
if (1.toLong() !in 1 until 3 != !range0.contains(1.toLong())) throw AssertionError()
if (!(1.toLong() in 1 until 3) != !range0.contains(1.toLong())) throw AssertionError()
if (!(1.toLong() !in 1 until 3) != range0.contains(1.toLong())) throw AssertionError()
// no local optimizations
if (element11 in 1 until 3 != range0.contains(element11)) throw AssertionError()
if (element11 !in 1 until 3 != !range0.contains(element11)) throw AssertionError()
@@ -278,10 +242,10 @@ fun testR0xE11() {
fun testR0xE12() {
// with possible local optimizations
if (1.toByte() in 1 until 3 != range0.contains(1.toByte())) throw AssertionError()
if (1.toByte() !in 1 until 3 != !range0.contains(1.toByte())) throw AssertionError()
if (!(1.toByte() in 1 until 3) != !range0.contains(1.toByte())) throw AssertionError()
if (!(1.toByte() !in 1 until 3) != range0.contains(1.toByte())) throw AssertionError()
if (2.toByte() in 1 until 3 != range0.contains(2.toByte())) throw AssertionError()
if (2.toByte() !in 1 until 3 != !range0.contains(2.toByte())) throw AssertionError()
if (!(2.toByte() in 1 until 3) != !range0.contains(2.toByte())) throw AssertionError()
if (!(2.toByte() !in 1 until 3) != range0.contains(2.toByte())) throw AssertionError()
// no local optimizations
if (element12 in 1 until 3 != range0.contains(element12)) throw AssertionError()
if (element12 !in 1 until 3 != !range0.contains(element12)) throw AssertionError()
@@ -291,10 +255,10 @@ fun testR0xE12() {
fun testR0xE13() {
// with possible local optimizations
if (1.toShort() in 1 until 3 != range0.contains(1.toShort())) throw AssertionError()
if (1.toShort() !in 1 until 3 != !range0.contains(1.toShort())) throw AssertionError()
if (!(1.toShort() in 1 until 3) != !range0.contains(1.toShort())) throw AssertionError()
if (!(1.toShort() !in 1 until 3) != range0.contains(1.toShort())) throw AssertionError()
if (2.toShort() in 1 until 3 != range0.contains(2.toShort())) throw AssertionError()
if (2.toShort() !in 1 until 3 != !range0.contains(2.toShort())) throw AssertionError()
if (!(2.toShort() in 1 until 3) != !range0.contains(2.toShort())) throw AssertionError()
if (!(2.toShort() !in 1 until 3) != range0.contains(2.toShort())) throw AssertionError()
// no local optimizations
if (element13 in 1 until 3 != range0.contains(element13)) throw AssertionError()
if (element13 !in 1 until 3 != !range0.contains(element13)) throw AssertionError()
@@ -304,10 +268,10 @@ fun testR0xE13() {
fun testR0xE14() {
// with possible local optimizations
if (1 in 1 until 3 != range0.contains(1)) throw AssertionError()
if (1 !in 1 until 3 != !range0.contains(1)) throw AssertionError()
if (!(1 in 1 until 3) != !range0.contains(1)) throw AssertionError()
if (!(1 !in 1 until 3) != range0.contains(1)) throw AssertionError()
if (2 in 1 until 3 != range0.contains(2)) throw AssertionError()
if (2 !in 1 until 3 != !range0.contains(2)) throw AssertionError()
if (!(2 in 1 until 3) != !range0.contains(2)) throw AssertionError()
if (!(2 !in 1 until 3) != range0.contains(2)) throw AssertionError()
// no local optimizations
if (element14 in 1 until 3 != range0.contains(element14)) throw AssertionError()
if (element14 !in 1 until 3 != !range0.contains(element14)) throw AssertionError()
@@ -317,10 +281,10 @@ fun testR0xE14() {
fun testR0xE15() {
// with possible local optimizations
if (1.toLong() in 1 until 3 != range0.contains(1.toLong())) throw AssertionError()
if (1.toLong() !in 1 until 3 != !range0.contains(1.toLong())) throw AssertionError()
if (!(1.toLong() in 1 until 3) != !range0.contains(1.toLong())) throw AssertionError()
if (!(1.toLong() !in 1 until 3) != range0.contains(1.toLong())) throw AssertionError()
if (2.toLong() in 1 until 3 != range0.contains(2.toLong())) throw AssertionError()
if (2.toLong() !in 1 until 3 != !range0.contains(2.toLong())) throw AssertionError()
if (!(2.toLong() in 1 until 3) != !range0.contains(2.toLong())) throw AssertionError()
if (!(2.toLong() !in 1 until 3) != range0.contains(2.toLong())) throw AssertionError()
// no local optimizations
if (element15 in 1 until 3 != range0.contains(element15)) throw AssertionError()
if (element15 !in 1 until 3 != !range0.contains(element15)) throw AssertionError()
@@ -330,10 +294,10 @@ fun testR0xE15() {
fun testR0xE16() {
// with possible local optimizations
if (1.toFloat() in 1 until 3 != range0.contains(1.toFloat())) throw AssertionError()
if (1.toFloat() !in 1 until 3 != !range0.contains(1.toFloat())) throw AssertionError()
if (!(1.toFloat() in 1 until 3) != !range0.contains(1.toFloat())) throw AssertionError()
if (!(1.toFloat() !in 1 until 3) != range0.contains(1.toFloat())) throw AssertionError()
if (3.toByte() in 1 until 3 != range0.contains(3.toByte())) throw AssertionError()
if (3.toByte() !in 1 until 3 != !range0.contains(3.toByte())) throw AssertionError()
if (!(3.toByte() in 1 until 3) != !range0.contains(3.toByte())) throw AssertionError()
if (!(3.toByte() !in 1 until 3) != range0.contains(3.toByte())) throw AssertionError()
// no local optimizations
if (element16 in 1 until 3 != range0.contains(element16)) throw AssertionError()
if (element16 !in 1 until 3 != !range0.contains(element16)) throw AssertionError()
@@ -343,10 +307,10 @@ fun testR0xE16() {
fun testR0xE17() {
// with possible local optimizations
if (1.toDouble() in 1 until 3 != range0.contains(1.toDouble())) throw AssertionError()
if (1.toDouble() !in 1 until 3 != !range0.contains(1.toDouble())) throw AssertionError()
if (!(1.toDouble() in 1 until 3) != !range0.contains(1.toDouble())) throw AssertionError()
if (!(1.toDouble() !in 1 until 3) != range0.contains(1.toDouble())) throw AssertionError()
if (3.toShort() in 1 until 3 != range0.contains(3.toShort())) throw AssertionError()
if (3.toShort() !in 1 until 3 != !range0.contains(3.toShort())) throw AssertionError()
if (!(3.toShort() in 1 until 3) != !range0.contains(3.toShort())) throw AssertionError()
if (!(3.toShort() !in 1 until 3) != range0.contains(3.toShort())) throw AssertionError()
// no local optimizations
if (element17 in 1 until 3 != range0.contains(element17)) throw AssertionError()
if (element17 !in 1 until 3 != !range0.contains(element17)) throw AssertionError()
@@ -356,10 +320,10 @@ fun testR0xE17() {
fun testR0xE18() {
// with possible local optimizations
if (2.toByte() in 1 until 3 != range0.contains(2.toByte())) throw AssertionError()
if (2.toByte() !in 1 until 3 != !range0.contains(2.toByte())) throw AssertionError()
if (!(2.toByte() in 1 until 3) != !range0.contains(2.toByte())) throw AssertionError()
if (!(2.toByte() !in 1 until 3) != range0.contains(2.toByte())) throw AssertionError()
if (3 in 1 until 3 != range0.contains(3)) throw AssertionError()
if (3 !in 1 until 3 != !range0.contains(3)) throw AssertionError()
if (!(3 in 1 until 3) != !range0.contains(3)) throw AssertionError()
if (!(3 !in 1 until 3) != range0.contains(3)) throw AssertionError()
// no local optimizations
if (element18 in 1 until 3 != range0.contains(element18)) throw AssertionError()
if (element18 !in 1 until 3 != !range0.contains(element18)) throw AssertionError()
@@ -369,10 +333,10 @@ fun testR0xE18() {
fun testR0xE19() {
// with possible local optimizations
if (2.toShort() in 1 until 3 != range0.contains(2.toShort())) throw AssertionError()
if (2.toShort() !in 1 until 3 != !range0.contains(2.toShort())) throw AssertionError()
if (!(2.toShort() in 1 until 3) != !range0.contains(2.toShort())) throw AssertionError()
if (!(2.toShort() !in 1 until 3) != range0.contains(2.toShort())) throw AssertionError()
if (3.toLong() in 1 until 3 != range0.contains(3.toLong())) throw AssertionError()
if (3.toLong() !in 1 until 3 != !range0.contains(3.toLong())) throw AssertionError()
if (!(3.toLong() in 1 until 3) != !range0.contains(3.toLong())) throw AssertionError()
if (!(3.toLong() !in 1 until 3) != range0.contains(3.toLong())) throw AssertionError()
// no local optimizations
if (element19 in 1 until 3 != range0.contains(element19)) throw AssertionError()
if (element19 !in 1 until 3 != !range0.contains(element19)) throw AssertionError()
@@ -382,10 +346,10 @@ fun testR0xE19() {
fun testR0xE20() {
// with possible local optimizations
if (2 in 1 until 3 != range0.contains(2)) throw AssertionError()
if (2 !in 1 until 3 != !range0.contains(2)) throw AssertionError()
if (!(2 in 1 until 3) != !range0.contains(2)) throw AssertionError()
if (!(2 !in 1 until 3) != range0.contains(2)) throw AssertionError()
if (4.toByte() in 1 until 3 != range0.contains(4.toByte())) throw AssertionError()
if (4.toByte() !in 1 until 3 != !range0.contains(4.toByte())) throw AssertionError()
if (!(4.toByte() in 1 until 3) != !range0.contains(4.toByte())) throw AssertionError()
if (!(4.toByte() !in 1 until 3) != range0.contains(4.toByte())) throw AssertionError()
// no local optimizations
if (element20 in 1 until 3 != range0.contains(element20)) throw AssertionError()
if (element20 !in 1 until 3 != !range0.contains(element20)) throw AssertionError()
@@ -395,10 +359,10 @@ fun testR0xE20() {
fun testR0xE21() {
// with possible local optimizations
if (2.toLong() in 1 until 3 != range0.contains(2.toLong())) throw AssertionError()
if (2.toLong() !in 1 until 3 != !range0.contains(2.toLong())) throw AssertionError()
if (!(2.toLong() in 1 until 3) != !range0.contains(2.toLong())) throw AssertionError()
if (!(2.toLong() !in 1 until 3) != range0.contains(2.toLong())) throw AssertionError()
if (4.toShort() in 1 until 3 != range0.contains(4.toShort())) throw AssertionError()
if (4.toShort() !in 1 until 3 != !range0.contains(4.toShort())) throw AssertionError()
if (!(4.toShort() in 1 until 3) != !range0.contains(4.toShort())) throw AssertionError()
if (!(4.toShort() !in 1 until 3) != range0.contains(4.toShort())) throw AssertionError()
// no local optimizations
if (element21 in 1 until 3 != range0.contains(element21)) throw AssertionError()
if (element21 !in 1 until 3 != !range0.contains(element21)) throw AssertionError()
@@ -408,10 +372,10 @@ fun testR0xE21() {
fun testR0xE22() {
// with possible local optimizations
if (2.toFloat() in 1 until 3 != range0.contains(2.toFloat())) throw AssertionError()
if (2.toFloat() !in 1 until 3 != !range0.contains(2.toFloat())) throw AssertionError()
if (!(2.toFloat() in 1 until 3) != !range0.contains(2.toFloat())) throw AssertionError()
if (!(2.toFloat() !in 1 until 3) != range0.contains(2.toFloat())) throw AssertionError()
if (4 in 1 until 3 != range0.contains(4)) throw AssertionError()
if (4 !in 1 until 3 != !range0.contains(4)) throw AssertionError()
if (!(4 in 1 until 3) != !range0.contains(4)) throw AssertionError()
if (!(4 !in 1 until 3) != range0.contains(4)) throw AssertionError()
// no local optimizations
if (element22 in 1 until 3 != range0.contains(element22)) throw AssertionError()
if (element22 !in 1 until 3 != !range0.contains(element22)) throw AssertionError()
@@ -420,172 +384,16 @@ fun testR0xE22() {
}
fun testR0xE23() {
// with possible local optimizations
if (2.toDouble() in 1 until 3 != range0.contains(2.toDouble())) throw AssertionError()
if (2.toDouble() !in 1 until 3 != !range0.contains(2.toDouble())) throw AssertionError()
if (!(2.toDouble() in 1 until 3) != !range0.contains(2.toDouble())) throw AssertionError()
if (!(2.toDouble() !in 1 until 3) != range0.contains(2.toDouble())) throw AssertionError()
// no local optimizations
if (element23 in 1 until 3 != range0.contains(element23)) throw AssertionError()
if (element23 !in 1 until 3 != !range0.contains(element23)) throw AssertionError()
if (!(element23 in 1 until 3) != !range0.contains(element23)) throw AssertionError()
if (!(element23 !in 1 until 3) != range0.contains(element23)) throw AssertionError()
}
fun testR0xE24() {
// with possible local optimizations
if (3.toByte() in 1 until 3 != range0.contains(3.toByte())) throw AssertionError()
if (3.toByte() !in 1 until 3 != !range0.contains(3.toByte())) throw AssertionError()
if (!(3.toByte() in 1 until 3) != !range0.contains(3.toByte())) throw AssertionError()
if (!(3.toByte() !in 1 until 3) != range0.contains(3.toByte())) throw AssertionError()
// no local optimizations
if (element24 in 1 until 3 != range0.contains(element24)) throw AssertionError()
if (element24 !in 1 until 3 != !range0.contains(element24)) throw AssertionError()
if (!(element24 in 1 until 3) != !range0.contains(element24)) throw AssertionError()
if (!(element24 !in 1 until 3) != range0.contains(element24)) throw AssertionError()
}
fun testR0xE25() {
// with possible local optimizations
if (3.toShort() in 1 until 3 != range0.contains(3.toShort())) throw AssertionError()
if (3.toShort() !in 1 until 3 != !range0.contains(3.toShort())) throw AssertionError()
if (!(3.toShort() in 1 until 3) != !range0.contains(3.toShort())) throw AssertionError()
if (!(3.toShort() !in 1 until 3) != range0.contains(3.toShort())) throw AssertionError()
// no local optimizations
if (element25 in 1 until 3 != range0.contains(element25)) throw AssertionError()
if (element25 !in 1 until 3 != !range0.contains(element25)) throw AssertionError()
if (!(element25 in 1 until 3) != !range0.contains(element25)) throw AssertionError()
if (!(element25 !in 1 until 3) != range0.contains(element25)) throw AssertionError()
}
fun testR0xE26() {
// with possible local optimizations
if (3 in 1 until 3 != range0.contains(3)) throw AssertionError()
if (3 !in 1 until 3 != !range0.contains(3)) throw AssertionError()
if (!(3 in 1 until 3) != !range0.contains(3)) throw AssertionError()
if (!(3 !in 1 until 3) != range0.contains(3)) throw AssertionError()
// no local optimizations
if (element26 in 1 until 3 != range0.contains(element26)) throw AssertionError()
if (element26 !in 1 until 3 != !range0.contains(element26)) throw AssertionError()
if (!(element26 in 1 until 3) != !range0.contains(element26)) throw AssertionError()
if (!(element26 !in 1 until 3) != range0.contains(element26)) throw AssertionError()
}
fun testR0xE27() {
// with possible local optimizations
if (3.toLong() in 1 until 3 != range0.contains(3.toLong())) throw AssertionError()
if (3.toLong() !in 1 until 3 != !range0.contains(3.toLong())) throw AssertionError()
if (!(3.toLong() in 1 until 3) != !range0.contains(3.toLong())) throw AssertionError()
if (!(3.toLong() !in 1 until 3) != range0.contains(3.toLong())) throw AssertionError()
// no local optimizations
if (element27 in 1 until 3 != range0.contains(element27)) throw AssertionError()
if (element27 !in 1 until 3 != !range0.contains(element27)) throw AssertionError()
if (!(element27 in 1 until 3) != !range0.contains(element27)) throw AssertionError()
if (!(element27 !in 1 until 3) != range0.contains(element27)) throw AssertionError()
}
fun testR0xE28() {
// with possible local optimizations
if (3.toFloat() in 1 until 3 != range0.contains(3.toFloat())) throw AssertionError()
if (3.toFloat() !in 1 until 3 != !range0.contains(3.toFloat())) throw AssertionError()
if (!(3.toFloat() in 1 until 3) != !range0.contains(3.toFloat())) throw AssertionError()
if (!(3.toFloat() !in 1 until 3) != range0.contains(3.toFloat())) throw AssertionError()
// no local optimizations
if (element28 in 1 until 3 != range0.contains(element28)) throw AssertionError()
if (element28 !in 1 until 3 != !range0.contains(element28)) throw AssertionError()
if (!(element28 in 1 until 3) != !range0.contains(element28)) throw AssertionError()
if (!(element28 !in 1 until 3) != range0.contains(element28)) throw AssertionError()
}
fun testR0xE29() {
// with possible local optimizations
if (3.toDouble() in 1 until 3 != range0.contains(3.toDouble())) throw AssertionError()
if (3.toDouble() !in 1 until 3 != !range0.contains(3.toDouble())) throw AssertionError()
if (!(3.toDouble() in 1 until 3) != !range0.contains(3.toDouble())) throw AssertionError()
if (!(3.toDouble() !in 1 until 3) != range0.contains(3.toDouble())) throw AssertionError()
// no local optimizations
if (element29 in 1 until 3 != range0.contains(element29)) throw AssertionError()
if (element29 !in 1 until 3 != !range0.contains(element29)) throw AssertionError()
if (!(element29 in 1 until 3) != !range0.contains(element29)) throw AssertionError()
if (!(element29 !in 1 until 3) != range0.contains(element29)) throw AssertionError()
}
fun testR0xE30() {
// with possible local optimizations
if (4.toByte() in 1 until 3 != range0.contains(4.toByte())) throw AssertionError()
if (4.toByte() !in 1 until 3 != !range0.contains(4.toByte())) throw AssertionError()
if (!(4.toByte() in 1 until 3) != !range0.contains(4.toByte())) throw AssertionError()
if (!(4.toByte() !in 1 until 3) != range0.contains(4.toByte())) throw AssertionError()
// no local optimizations
if (element30 in 1 until 3 != range0.contains(element30)) throw AssertionError()
if (element30 !in 1 until 3 != !range0.contains(element30)) throw AssertionError()
if (!(element30 in 1 until 3) != !range0.contains(element30)) throw AssertionError()
if (!(element30 !in 1 until 3) != range0.contains(element30)) throw AssertionError()
}
fun testR0xE31() {
// with possible local optimizations
if (4.toShort() in 1 until 3 != range0.contains(4.toShort())) throw AssertionError()
if (4.toShort() !in 1 until 3 != !range0.contains(4.toShort())) throw AssertionError()
if (!(4.toShort() in 1 until 3) != !range0.contains(4.toShort())) throw AssertionError()
if (!(4.toShort() !in 1 until 3) != range0.contains(4.toShort())) throw AssertionError()
// no local optimizations
if (element31 in 1 until 3 != range0.contains(element31)) throw AssertionError()
if (element31 !in 1 until 3 != !range0.contains(element31)) throw AssertionError()
if (!(element31 in 1 until 3) != !range0.contains(element31)) throw AssertionError()
if (!(element31 !in 1 until 3) != range0.contains(element31)) throw AssertionError()
}
fun testR0xE32() {
// with possible local optimizations
if (4 in 1 until 3 != range0.contains(4)) throw AssertionError()
if (4 !in 1 until 3 != !range0.contains(4)) throw AssertionError()
if (!(4 in 1 until 3) != !range0.contains(4)) throw AssertionError()
if (!(4 !in 1 until 3) != range0.contains(4)) throw AssertionError()
// no local optimizations
if (element32 in 1 until 3 != range0.contains(element32)) throw AssertionError()
if (element32 !in 1 until 3 != !range0.contains(element32)) throw AssertionError()
if (!(element32 in 1 until 3) != !range0.contains(element32)) throw AssertionError()
if (!(element32 !in 1 until 3) != range0.contains(element32)) throw AssertionError()
}
fun testR0xE33() {
// with possible local optimizations
if (4.toLong() in 1 until 3 != range0.contains(4.toLong())) throw AssertionError()
if (4.toLong() !in 1 until 3 != !range0.contains(4.toLong())) throw AssertionError()
if (!(4.toLong() in 1 until 3) != !range0.contains(4.toLong())) throw AssertionError()
if (!(4.toLong() !in 1 until 3) != range0.contains(4.toLong())) throw AssertionError()
// no local optimizations
if (element33 in 1 until 3 != range0.contains(element33)) throw AssertionError()
if (element33 !in 1 until 3 != !range0.contains(element33)) throw AssertionError()
if (!(element33 in 1 until 3) != !range0.contains(element33)) throw AssertionError()
if (!(element33 !in 1 until 3) != range0.contains(element33)) throw AssertionError()
}
fun testR0xE34() {
// with possible local optimizations
if (4.toFloat() in 1 until 3 != range0.contains(4.toFloat())) throw AssertionError()
if (4.toFloat() !in 1 until 3 != !range0.contains(4.toFloat())) throw AssertionError()
if (!(4.toFloat() in 1 until 3) != !range0.contains(4.toFloat())) throw AssertionError()
if (!(4.toFloat() !in 1 until 3) != range0.contains(4.toFloat())) throw AssertionError()
// no local optimizations
if (element34 in 1 until 3 != range0.contains(element34)) throw AssertionError()
if (element34 !in 1 until 3 != !range0.contains(element34)) throw AssertionError()
if (!(element34 in 1 until 3) != !range0.contains(element34)) throw AssertionError()
if (!(element34 !in 1 until 3) != range0.contains(element34)) throw AssertionError()
}
fun testR0xE35() {
// with possible local optimizations
if (4.toDouble() in 1 until 3 != range0.contains(4.toDouble())) throw AssertionError()
if (4.toDouble() !in 1 until 3 != !range0.contains(4.toDouble())) throw AssertionError()
if (!(4.toDouble() in 1 until 3) != !range0.contains(4.toDouble())) throw AssertionError()
if (!(4.toDouble() !in 1 until 3) != range0.contains(4.toDouble())) throw AssertionError()
// no local optimizations
if (element35 in 1 until 3 != range0.contains(element35)) throw AssertionError()
if (element35 !in 1 until 3 != !range0.contains(element35)) throw AssertionError()
if (!(element35 in 1 until 3) != !range0.contains(element35)) throw AssertionError()
if (!(element35 !in 1 until 3) != range0.contains(element35)) throw AssertionError()
if (element23 in 1 until 3 != range0.contains(element23)) throw AssertionError()
if (element23 !in 1 until 3 != !range0.contains(element23)) throw AssertionError()
if (!(element23 in 1 until 3) != !range0.contains(element23)) throw AssertionError()
if (!(element23 !in 1 until 3) != range0.contains(element23)) throw AssertionError()
}
fun testR1xE0() {
@@ -642,10 +450,10 @@ fun testR1xE3() {
fun testR1xE4() {
// with possible local optimizations
if ((-1).toFloat() in 3 until 1 != range1.contains((-1).toFloat())) throw AssertionError()
if ((-1).toFloat() !in 3 until 1 != !range1.contains((-1).toFloat())) throw AssertionError()
if (!((-1).toFloat() in 3 until 1) != !range1.contains((-1).toFloat())) throw AssertionError()
if (!((-1).toFloat() !in 3 until 1) != range1.contains((-1).toFloat())) throw AssertionError()
if (0.toByte() in 3 until 1 != range1.contains(0.toByte())) throw AssertionError()
if (0.toByte() !in 3 until 1 != !range1.contains(0.toByte())) throw AssertionError()
if (!(0.toByte() in 3 until 1) != !range1.contains(0.toByte())) throw AssertionError()
if (!(0.toByte() !in 3 until 1) != range1.contains(0.toByte())) throw AssertionError()
// no local optimizations
if (element4 in 3 until 1 != range1.contains(element4)) throw AssertionError()
if (element4 !in 3 until 1 != !range1.contains(element4)) throw AssertionError()
@@ -655,10 +463,10 @@ fun testR1xE4() {
fun testR1xE5() {
// with possible local optimizations
if ((-1).toDouble() in 3 until 1 != range1.contains((-1).toDouble())) throw AssertionError()
if ((-1).toDouble() !in 3 until 1 != !range1.contains((-1).toDouble())) throw AssertionError()
if (!((-1).toDouble() in 3 until 1) != !range1.contains((-1).toDouble())) throw AssertionError()
if (!((-1).toDouble() !in 3 until 1) != range1.contains((-1).toDouble())) throw AssertionError()
if (0.toShort() in 3 until 1 != range1.contains(0.toShort())) throw AssertionError()
if (0.toShort() !in 3 until 1 != !range1.contains(0.toShort())) throw AssertionError()
if (!(0.toShort() in 3 until 1) != !range1.contains(0.toShort())) throw AssertionError()
if (!(0.toShort() !in 3 until 1) != range1.contains(0.toShort())) throw AssertionError()
// no local optimizations
if (element5 in 3 until 1 != range1.contains(element5)) throw AssertionError()
if (element5 !in 3 until 1 != !range1.contains(element5)) throw AssertionError()
@@ -668,10 +476,10 @@ fun testR1xE5() {
fun testR1xE6() {
// with possible local optimizations
if (0.toByte() in 3 until 1 != range1.contains(0.toByte())) throw AssertionError()
if (0.toByte() !in 3 until 1 != !range1.contains(0.toByte())) throw AssertionError()
if (!(0.toByte() in 3 until 1) != !range1.contains(0.toByte())) throw AssertionError()
if (!(0.toByte() !in 3 until 1) != range1.contains(0.toByte())) throw AssertionError()
if (0 in 3 until 1 != range1.contains(0)) throw AssertionError()
if (0 !in 3 until 1 != !range1.contains(0)) throw AssertionError()
if (!(0 in 3 until 1) != !range1.contains(0)) throw AssertionError()
if (!(0 !in 3 until 1) != range1.contains(0)) throw AssertionError()
// no local optimizations
if (element6 in 3 until 1 != range1.contains(element6)) throw AssertionError()
if (element6 !in 3 until 1 != !range1.contains(element6)) throw AssertionError()
@@ -681,10 +489,10 @@ fun testR1xE6() {
fun testR1xE7() {
// with possible local optimizations
if (0.toShort() in 3 until 1 != range1.contains(0.toShort())) throw AssertionError()
if (0.toShort() !in 3 until 1 != !range1.contains(0.toShort())) throw AssertionError()
if (!(0.toShort() in 3 until 1) != !range1.contains(0.toShort())) throw AssertionError()
if (!(0.toShort() !in 3 until 1) != range1.contains(0.toShort())) throw AssertionError()
if (0.toLong() in 3 until 1 != range1.contains(0.toLong())) throw AssertionError()
if (0.toLong() !in 3 until 1 != !range1.contains(0.toLong())) throw AssertionError()
if (!(0.toLong() in 3 until 1) != !range1.contains(0.toLong())) throw AssertionError()
if (!(0.toLong() !in 3 until 1) != range1.contains(0.toLong())) throw AssertionError()
// no local optimizations
if (element7 in 3 until 1 != range1.contains(element7)) throw AssertionError()
if (element7 !in 3 until 1 != !range1.contains(element7)) throw AssertionError()
@@ -694,10 +502,10 @@ fun testR1xE7() {
fun testR1xE8() {
// with possible local optimizations
if (0 in 3 until 1 != range1.contains(0)) throw AssertionError()
if (0 !in 3 until 1 != !range1.contains(0)) throw AssertionError()
if (!(0 in 3 until 1) != !range1.contains(0)) throw AssertionError()
if (!(0 !in 3 until 1) != range1.contains(0)) throw AssertionError()
if (1.toByte() in 3 until 1 != range1.contains(1.toByte())) throw AssertionError()
if (1.toByte() !in 3 until 1 != !range1.contains(1.toByte())) throw AssertionError()
if (!(1.toByte() in 3 until 1) != !range1.contains(1.toByte())) throw AssertionError()
if (!(1.toByte() !in 3 until 1) != range1.contains(1.toByte())) throw AssertionError()
// no local optimizations
if (element8 in 3 until 1 != range1.contains(element8)) throw AssertionError()
if (element8 !in 3 until 1 != !range1.contains(element8)) throw AssertionError()
@@ -707,10 +515,10 @@ fun testR1xE8() {
fun testR1xE9() {
// with possible local optimizations
if (0.toLong() in 3 until 1 != range1.contains(0.toLong())) throw AssertionError()
if (0.toLong() !in 3 until 1 != !range1.contains(0.toLong())) throw AssertionError()
if (!(0.toLong() in 3 until 1) != !range1.contains(0.toLong())) throw AssertionError()
if (!(0.toLong() !in 3 until 1) != range1.contains(0.toLong())) throw AssertionError()
if (1.toShort() in 3 until 1 != range1.contains(1.toShort())) throw AssertionError()
if (1.toShort() !in 3 until 1 != !range1.contains(1.toShort())) throw AssertionError()
if (!(1.toShort() in 3 until 1) != !range1.contains(1.toShort())) throw AssertionError()
if (!(1.toShort() !in 3 until 1) != range1.contains(1.toShort())) throw AssertionError()
// no local optimizations
if (element9 in 3 until 1 != range1.contains(element9)) throw AssertionError()
if (element9 !in 3 until 1 != !range1.contains(element9)) throw AssertionError()
@@ -720,10 +528,10 @@ fun testR1xE9() {
fun testR1xE10() {
// with possible local optimizations
if (0.toFloat() in 3 until 1 != range1.contains(0.toFloat())) throw AssertionError()
if (0.toFloat() !in 3 until 1 != !range1.contains(0.toFloat())) throw AssertionError()
if (!(0.toFloat() in 3 until 1) != !range1.contains(0.toFloat())) throw AssertionError()
if (!(0.toFloat() !in 3 until 1) != range1.contains(0.toFloat())) throw AssertionError()
if (1 in 3 until 1 != range1.contains(1)) throw AssertionError()
if (1 !in 3 until 1 != !range1.contains(1)) throw AssertionError()
if (!(1 in 3 until 1) != !range1.contains(1)) throw AssertionError()
if (!(1 !in 3 until 1) != range1.contains(1)) throw AssertionError()
// no local optimizations
if (element10 in 3 until 1 != range1.contains(element10)) throw AssertionError()
if (element10 !in 3 until 1 != !range1.contains(element10)) throw AssertionError()
@@ -733,10 +541,10 @@ fun testR1xE10() {
fun testR1xE11() {
// with possible local optimizations
if (0.toDouble() in 3 until 1 != range1.contains(0.toDouble())) throw AssertionError()
if (0.toDouble() !in 3 until 1 != !range1.contains(0.toDouble())) throw AssertionError()
if (!(0.toDouble() in 3 until 1) != !range1.contains(0.toDouble())) throw AssertionError()
if (!(0.toDouble() !in 3 until 1) != range1.contains(0.toDouble())) throw AssertionError()
if (1.toLong() in 3 until 1 != range1.contains(1.toLong())) throw AssertionError()
if (1.toLong() !in 3 until 1 != !range1.contains(1.toLong())) throw AssertionError()
if (!(1.toLong() in 3 until 1) != !range1.contains(1.toLong())) throw AssertionError()
if (!(1.toLong() !in 3 until 1) != range1.contains(1.toLong())) throw AssertionError()
// no local optimizations
if (element11 in 3 until 1 != range1.contains(element11)) throw AssertionError()
if (element11 !in 3 until 1 != !range1.contains(element11)) throw AssertionError()
@@ -746,10 +554,10 @@ fun testR1xE11() {
fun testR1xE12() {
// with possible local optimizations
if (1.toByte() in 3 until 1 != range1.contains(1.toByte())) throw AssertionError()
if (1.toByte() !in 3 until 1 != !range1.contains(1.toByte())) throw AssertionError()
if (!(1.toByte() in 3 until 1) != !range1.contains(1.toByte())) throw AssertionError()
if (!(1.toByte() !in 3 until 1) != range1.contains(1.toByte())) throw AssertionError()
if (2.toByte() in 3 until 1 != range1.contains(2.toByte())) throw AssertionError()
if (2.toByte() !in 3 until 1 != !range1.contains(2.toByte())) throw AssertionError()
if (!(2.toByte() in 3 until 1) != !range1.contains(2.toByte())) throw AssertionError()
if (!(2.toByte() !in 3 until 1) != range1.contains(2.toByte())) throw AssertionError()
// no local optimizations
if (element12 in 3 until 1 != range1.contains(element12)) throw AssertionError()
if (element12 !in 3 until 1 != !range1.contains(element12)) throw AssertionError()
@@ -759,10 +567,10 @@ fun testR1xE12() {
fun testR1xE13() {
// with possible local optimizations
if (1.toShort() in 3 until 1 != range1.contains(1.toShort())) throw AssertionError()
if (1.toShort() !in 3 until 1 != !range1.contains(1.toShort())) throw AssertionError()
if (!(1.toShort() in 3 until 1) != !range1.contains(1.toShort())) throw AssertionError()
if (!(1.toShort() !in 3 until 1) != range1.contains(1.toShort())) throw AssertionError()
if (2.toShort() in 3 until 1 != range1.contains(2.toShort())) throw AssertionError()
if (2.toShort() !in 3 until 1 != !range1.contains(2.toShort())) throw AssertionError()
if (!(2.toShort() in 3 until 1) != !range1.contains(2.toShort())) throw AssertionError()
if (!(2.toShort() !in 3 until 1) != range1.contains(2.toShort())) throw AssertionError()
// no local optimizations
if (element13 in 3 until 1 != range1.contains(element13)) throw AssertionError()
if (element13 !in 3 until 1 != !range1.contains(element13)) throw AssertionError()
@@ -772,10 +580,10 @@ fun testR1xE13() {
fun testR1xE14() {
// with possible local optimizations
if (1 in 3 until 1 != range1.contains(1)) throw AssertionError()
if (1 !in 3 until 1 != !range1.contains(1)) throw AssertionError()
if (!(1 in 3 until 1) != !range1.contains(1)) throw AssertionError()
if (!(1 !in 3 until 1) != range1.contains(1)) throw AssertionError()
if (2 in 3 until 1 != range1.contains(2)) throw AssertionError()
if (2 !in 3 until 1 != !range1.contains(2)) throw AssertionError()
if (!(2 in 3 until 1) != !range1.contains(2)) throw AssertionError()
if (!(2 !in 3 until 1) != range1.contains(2)) throw AssertionError()
// no local optimizations
if (element14 in 3 until 1 != range1.contains(element14)) throw AssertionError()
if (element14 !in 3 until 1 != !range1.contains(element14)) throw AssertionError()
@@ -785,10 +593,10 @@ fun testR1xE14() {
fun testR1xE15() {
// with possible local optimizations
if (1.toLong() in 3 until 1 != range1.contains(1.toLong())) throw AssertionError()
if (1.toLong() !in 3 until 1 != !range1.contains(1.toLong())) throw AssertionError()
if (!(1.toLong() in 3 until 1) != !range1.contains(1.toLong())) throw AssertionError()
if (!(1.toLong() !in 3 until 1) != range1.contains(1.toLong())) throw AssertionError()
if (2.toLong() in 3 until 1 != range1.contains(2.toLong())) throw AssertionError()
if (2.toLong() !in 3 until 1 != !range1.contains(2.toLong())) throw AssertionError()
if (!(2.toLong() in 3 until 1) != !range1.contains(2.toLong())) throw AssertionError()
if (!(2.toLong() !in 3 until 1) != range1.contains(2.toLong())) throw AssertionError()
// no local optimizations
if (element15 in 3 until 1 != range1.contains(element15)) throw AssertionError()
if (element15 !in 3 until 1 != !range1.contains(element15)) throw AssertionError()
@@ -798,10 +606,10 @@ fun testR1xE15() {
fun testR1xE16() {
// with possible local optimizations
if (1.toFloat() in 3 until 1 != range1.contains(1.toFloat())) throw AssertionError()
if (1.toFloat() !in 3 until 1 != !range1.contains(1.toFloat())) throw AssertionError()
if (!(1.toFloat() in 3 until 1) != !range1.contains(1.toFloat())) throw AssertionError()
if (!(1.toFloat() !in 3 until 1) != range1.contains(1.toFloat())) throw AssertionError()
if (3.toByte() in 3 until 1 != range1.contains(3.toByte())) throw AssertionError()
if (3.toByte() !in 3 until 1 != !range1.contains(3.toByte())) throw AssertionError()
if (!(3.toByte() in 3 until 1) != !range1.contains(3.toByte())) throw AssertionError()
if (!(3.toByte() !in 3 until 1) != range1.contains(3.toByte())) throw AssertionError()
// no local optimizations
if (element16 in 3 until 1 != range1.contains(element16)) throw AssertionError()
if (element16 !in 3 until 1 != !range1.contains(element16)) throw AssertionError()
@@ -811,10 +619,10 @@ fun testR1xE16() {
fun testR1xE17() {
// with possible local optimizations
if (1.toDouble() in 3 until 1 != range1.contains(1.toDouble())) throw AssertionError()
if (1.toDouble() !in 3 until 1 != !range1.contains(1.toDouble())) throw AssertionError()
if (!(1.toDouble() in 3 until 1) != !range1.contains(1.toDouble())) throw AssertionError()
if (!(1.toDouble() !in 3 until 1) != range1.contains(1.toDouble())) throw AssertionError()
if (3.toShort() in 3 until 1 != range1.contains(3.toShort())) throw AssertionError()
if (3.toShort() !in 3 until 1 != !range1.contains(3.toShort())) throw AssertionError()
if (!(3.toShort() in 3 until 1) != !range1.contains(3.toShort())) throw AssertionError()
if (!(3.toShort() !in 3 until 1) != range1.contains(3.toShort())) throw AssertionError()
// no local optimizations
if (element17 in 3 until 1 != range1.contains(element17)) throw AssertionError()
if (element17 !in 3 until 1 != !range1.contains(element17)) throw AssertionError()
@@ -824,10 +632,10 @@ fun testR1xE17() {
fun testR1xE18() {
// with possible local optimizations
if (2.toByte() in 3 until 1 != range1.contains(2.toByte())) throw AssertionError()
if (2.toByte() !in 3 until 1 != !range1.contains(2.toByte())) throw AssertionError()
if (!(2.toByte() in 3 until 1) != !range1.contains(2.toByte())) throw AssertionError()
if (!(2.toByte() !in 3 until 1) != range1.contains(2.toByte())) throw AssertionError()
if (3 in 3 until 1 != range1.contains(3)) throw AssertionError()
if (3 !in 3 until 1 != !range1.contains(3)) throw AssertionError()
if (!(3 in 3 until 1) != !range1.contains(3)) throw AssertionError()
if (!(3 !in 3 until 1) != range1.contains(3)) throw AssertionError()
// no local optimizations
if (element18 in 3 until 1 != range1.contains(element18)) throw AssertionError()
if (element18 !in 3 until 1 != !range1.contains(element18)) throw AssertionError()
@@ -837,10 +645,10 @@ fun testR1xE18() {
fun testR1xE19() {
// with possible local optimizations
if (2.toShort() in 3 until 1 != range1.contains(2.toShort())) throw AssertionError()
if (2.toShort() !in 3 until 1 != !range1.contains(2.toShort())) throw AssertionError()
if (!(2.toShort() in 3 until 1) != !range1.contains(2.toShort())) throw AssertionError()
if (!(2.toShort() !in 3 until 1) != range1.contains(2.toShort())) throw AssertionError()
if (3.toLong() in 3 until 1 != range1.contains(3.toLong())) throw AssertionError()
if (3.toLong() !in 3 until 1 != !range1.contains(3.toLong())) throw AssertionError()
if (!(3.toLong() in 3 until 1) != !range1.contains(3.toLong())) throw AssertionError()
if (!(3.toLong() !in 3 until 1) != range1.contains(3.toLong())) throw AssertionError()
// no local optimizations
if (element19 in 3 until 1 != range1.contains(element19)) throw AssertionError()
if (element19 !in 3 until 1 != !range1.contains(element19)) throw AssertionError()
@@ -850,10 +658,10 @@ fun testR1xE19() {
fun testR1xE20() {
// with possible local optimizations
if (2 in 3 until 1 != range1.contains(2)) throw AssertionError()
if (2 !in 3 until 1 != !range1.contains(2)) throw AssertionError()
if (!(2 in 3 until 1) != !range1.contains(2)) throw AssertionError()
if (!(2 !in 3 until 1) != range1.contains(2)) throw AssertionError()
if (4.toByte() in 3 until 1 != range1.contains(4.toByte())) throw AssertionError()
if (4.toByte() !in 3 until 1 != !range1.contains(4.toByte())) throw AssertionError()
if (!(4.toByte() in 3 until 1) != !range1.contains(4.toByte())) throw AssertionError()
if (!(4.toByte() !in 3 until 1) != range1.contains(4.toByte())) throw AssertionError()
// no local optimizations
if (element20 in 3 until 1 != range1.contains(element20)) throw AssertionError()
if (element20 !in 3 until 1 != !range1.contains(element20)) throw AssertionError()
@@ -863,10 +671,10 @@ fun testR1xE20() {
fun testR1xE21() {
// with possible local optimizations
if (2.toLong() in 3 until 1 != range1.contains(2.toLong())) throw AssertionError()
if (2.toLong() !in 3 until 1 != !range1.contains(2.toLong())) throw AssertionError()
if (!(2.toLong() in 3 until 1) != !range1.contains(2.toLong())) throw AssertionError()
if (!(2.toLong() !in 3 until 1) != range1.contains(2.toLong())) throw AssertionError()
if (4.toShort() in 3 until 1 != range1.contains(4.toShort())) throw AssertionError()
if (4.toShort() !in 3 until 1 != !range1.contains(4.toShort())) throw AssertionError()
if (!(4.toShort() in 3 until 1) != !range1.contains(4.toShort())) throw AssertionError()
if (!(4.toShort() !in 3 until 1) != range1.contains(4.toShort())) throw AssertionError()
// no local optimizations
if (element21 in 3 until 1 != range1.contains(element21)) throw AssertionError()
if (element21 !in 3 until 1 != !range1.contains(element21)) throw AssertionError()
@@ -876,10 +684,10 @@ fun testR1xE21() {
fun testR1xE22() {
// with possible local optimizations
if (2.toFloat() in 3 until 1 != range1.contains(2.toFloat())) throw AssertionError()
if (2.toFloat() !in 3 until 1 != !range1.contains(2.toFloat())) throw AssertionError()
if (!(2.toFloat() in 3 until 1) != !range1.contains(2.toFloat())) throw AssertionError()
if (!(2.toFloat() !in 3 until 1) != range1.contains(2.toFloat())) throw AssertionError()
if (4 in 3 until 1 != range1.contains(4)) throw AssertionError()
if (4 !in 3 until 1 != !range1.contains(4)) throw AssertionError()
if (!(4 in 3 until 1) != !range1.contains(4)) throw AssertionError()
if (!(4 !in 3 until 1) != range1.contains(4)) throw AssertionError()
// no local optimizations
if (element22 in 3 until 1 != range1.contains(element22)) throw AssertionError()
if (element22 !in 3 until 1 != !range1.contains(element22)) throw AssertionError()
@@ -889,10 +697,10 @@ fun testR1xE22() {
fun testR1xE23() {
// with possible local optimizations
if (2.toDouble() in 3 until 1 != range1.contains(2.toDouble())) throw AssertionError()
if (2.toDouble() !in 3 until 1 != !range1.contains(2.toDouble())) throw AssertionError()
if (!(2.toDouble() in 3 until 1) != !range1.contains(2.toDouble())) throw AssertionError()
if (!(2.toDouble() !in 3 until 1) != range1.contains(2.toDouble())) throw AssertionError()
if (4.toLong() in 3 until 1 != range1.contains(4.toLong())) throw AssertionError()
if (4.toLong() !in 3 until 1 != !range1.contains(4.toLong())) throw AssertionError()
if (!(4.toLong() in 3 until 1) != !range1.contains(4.toLong())) throw AssertionError()
if (!(4.toLong() !in 3 until 1) != range1.contains(4.toLong())) throw AssertionError()
// no local optimizations
if (element23 in 3 until 1 != range1.contains(element23)) throw AssertionError()
if (element23 !in 3 until 1 != !range1.contains(element23)) throw AssertionError()
@@ -900,160 +708,4 @@ fun testR1xE23() {
if (!(element23 !in 3 until 1) != range1.contains(element23)) throw AssertionError()
}
fun testR1xE24() {
// with possible local optimizations
if (3.toByte() in 3 until 1 != range1.contains(3.toByte())) throw AssertionError()
if (3.toByte() !in 3 until 1 != !range1.contains(3.toByte())) throw AssertionError()
if (!(3.toByte() in 3 until 1) != !range1.contains(3.toByte())) throw AssertionError()
if (!(3.toByte() !in 3 until 1) != range1.contains(3.toByte())) throw AssertionError()
// no local optimizations
if (element24 in 3 until 1 != range1.contains(element24)) throw AssertionError()
if (element24 !in 3 until 1 != !range1.contains(element24)) throw AssertionError()
if (!(element24 in 3 until 1) != !range1.contains(element24)) throw AssertionError()
if (!(element24 !in 3 until 1) != range1.contains(element24)) throw AssertionError()
}
fun testR1xE25() {
// with possible local optimizations
if (3.toShort() in 3 until 1 != range1.contains(3.toShort())) throw AssertionError()
if (3.toShort() !in 3 until 1 != !range1.contains(3.toShort())) throw AssertionError()
if (!(3.toShort() in 3 until 1) != !range1.contains(3.toShort())) throw AssertionError()
if (!(3.toShort() !in 3 until 1) != range1.contains(3.toShort())) throw AssertionError()
// no local optimizations
if (element25 in 3 until 1 != range1.contains(element25)) throw AssertionError()
if (element25 !in 3 until 1 != !range1.contains(element25)) throw AssertionError()
if (!(element25 in 3 until 1) != !range1.contains(element25)) throw AssertionError()
if (!(element25 !in 3 until 1) != range1.contains(element25)) throw AssertionError()
}
fun testR1xE26() {
// with possible local optimizations
if (3 in 3 until 1 != range1.contains(3)) throw AssertionError()
if (3 !in 3 until 1 != !range1.contains(3)) throw AssertionError()
if (!(3 in 3 until 1) != !range1.contains(3)) throw AssertionError()
if (!(3 !in 3 until 1) != range1.contains(3)) throw AssertionError()
// no local optimizations
if (element26 in 3 until 1 != range1.contains(element26)) throw AssertionError()
if (element26 !in 3 until 1 != !range1.contains(element26)) throw AssertionError()
if (!(element26 in 3 until 1) != !range1.contains(element26)) throw AssertionError()
if (!(element26 !in 3 until 1) != range1.contains(element26)) throw AssertionError()
}
fun testR1xE27() {
// with possible local optimizations
if (3.toLong() in 3 until 1 != range1.contains(3.toLong())) throw AssertionError()
if (3.toLong() !in 3 until 1 != !range1.contains(3.toLong())) throw AssertionError()
if (!(3.toLong() in 3 until 1) != !range1.contains(3.toLong())) throw AssertionError()
if (!(3.toLong() !in 3 until 1) != range1.contains(3.toLong())) throw AssertionError()
// no local optimizations
if (element27 in 3 until 1 != range1.contains(element27)) throw AssertionError()
if (element27 !in 3 until 1 != !range1.contains(element27)) throw AssertionError()
if (!(element27 in 3 until 1) != !range1.contains(element27)) throw AssertionError()
if (!(element27 !in 3 until 1) != range1.contains(element27)) throw AssertionError()
}
fun testR1xE28() {
// with possible local optimizations
if (3.toFloat() in 3 until 1 != range1.contains(3.toFloat())) throw AssertionError()
if (3.toFloat() !in 3 until 1 != !range1.contains(3.toFloat())) throw AssertionError()
if (!(3.toFloat() in 3 until 1) != !range1.contains(3.toFloat())) throw AssertionError()
if (!(3.toFloat() !in 3 until 1) != range1.contains(3.toFloat())) throw AssertionError()
// no local optimizations
if (element28 in 3 until 1 != range1.contains(element28)) throw AssertionError()
if (element28 !in 3 until 1 != !range1.contains(element28)) throw AssertionError()
if (!(element28 in 3 until 1) != !range1.contains(element28)) throw AssertionError()
if (!(element28 !in 3 until 1) != range1.contains(element28)) throw AssertionError()
}
fun testR1xE29() {
// with possible local optimizations
if (3.toDouble() in 3 until 1 != range1.contains(3.toDouble())) throw AssertionError()
if (3.toDouble() !in 3 until 1 != !range1.contains(3.toDouble())) throw AssertionError()
if (!(3.toDouble() in 3 until 1) != !range1.contains(3.toDouble())) throw AssertionError()
if (!(3.toDouble() !in 3 until 1) != range1.contains(3.toDouble())) throw AssertionError()
// no local optimizations
if (element29 in 3 until 1 != range1.contains(element29)) throw AssertionError()
if (element29 !in 3 until 1 != !range1.contains(element29)) throw AssertionError()
if (!(element29 in 3 until 1) != !range1.contains(element29)) throw AssertionError()
if (!(element29 !in 3 until 1) != range1.contains(element29)) throw AssertionError()
}
fun testR1xE30() {
// with possible local optimizations
if (4.toByte() in 3 until 1 != range1.contains(4.toByte())) throw AssertionError()
if (4.toByte() !in 3 until 1 != !range1.contains(4.toByte())) throw AssertionError()
if (!(4.toByte() in 3 until 1) != !range1.contains(4.toByte())) throw AssertionError()
if (!(4.toByte() !in 3 until 1) != range1.contains(4.toByte())) throw AssertionError()
// no local optimizations
if (element30 in 3 until 1 != range1.contains(element30)) throw AssertionError()
if (element30 !in 3 until 1 != !range1.contains(element30)) throw AssertionError()
if (!(element30 in 3 until 1) != !range1.contains(element30)) throw AssertionError()
if (!(element30 !in 3 until 1) != range1.contains(element30)) throw AssertionError()
}
fun testR1xE31() {
// with possible local optimizations
if (4.toShort() in 3 until 1 != range1.contains(4.toShort())) throw AssertionError()
if (4.toShort() !in 3 until 1 != !range1.contains(4.toShort())) throw AssertionError()
if (!(4.toShort() in 3 until 1) != !range1.contains(4.toShort())) throw AssertionError()
if (!(4.toShort() !in 3 until 1) != range1.contains(4.toShort())) throw AssertionError()
// no local optimizations
if (element31 in 3 until 1 != range1.contains(element31)) throw AssertionError()
if (element31 !in 3 until 1 != !range1.contains(element31)) throw AssertionError()
if (!(element31 in 3 until 1) != !range1.contains(element31)) throw AssertionError()
if (!(element31 !in 3 until 1) != range1.contains(element31)) throw AssertionError()
}
fun testR1xE32() {
// with possible local optimizations
if (4 in 3 until 1 != range1.contains(4)) throw AssertionError()
if (4 !in 3 until 1 != !range1.contains(4)) throw AssertionError()
if (!(4 in 3 until 1) != !range1.contains(4)) throw AssertionError()
if (!(4 !in 3 until 1) != range1.contains(4)) throw AssertionError()
// no local optimizations
if (element32 in 3 until 1 != range1.contains(element32)) throw AssertionError()
if (element32 !in 3 until 1 != !range1.contains(element32)) throw AssertionError()
if (!(element32 in 3 until 1) != !range1.contains(element32)) throw AssertionError()
if (!(element32 !in 3 until 1) != range1.contains(element32)) throw AssertionError()
}
fun testR1xE33() {
// with possible local optimizations
if (4.toLong() in 3 until 1 != range1.contains(4.toLong())) throw AssertionError()
if (4.toLong() !in 3 until 1 != !range1.contains(4.toLong())) throw AssertionError()
if (!(4.toLong() in 3 until 1) != !range1.contains(4.toLong())) throw AssertionError()
if (!(4.toLong() !in 3 until 1) != range1.contains(4.toLong())) throw AssertionError()
// no local optimizations
if (element33 in 3 until 1 != range1.contains(element33)) throw AssertionError()
if (element33 !in 3 until 1 != !range1.contains(element33)) throw AssertionError()
if (!(element33 in 3 until 1) != !range1.contains(element33)) throw AssertionError()
if (!(element33 !in 3 until 1) != range1.contains(element33)) throw AssertionError()
}
fun testR1xE34() {
// with possible local optimizations
if (4.toFloat() in 3 until 1 != range1.contains(4.toFloat())) throw AssertionError()
if (4.toFloat() !in 3 until 1 != !range1.contains(4.toFloat())) throw AssertionError()
if (!(4.toFloat() in 3 until 1) != !range1.contains(4.toFloat())) throw AssertionError()
if (!(4.toFloat() !in 3 until 1) != range1.contains(4.toFloat())) throw AssertionError()
// no local optimizations
if (element34 in 3 until 1 != range1.contains(element34)) throw AssertionError()
if (element34 !in 3 until 1 != !range1.contains(element34)) throw AssertionError()
if (!(element34 in 3 until 1) != !range1.contains(element34)) throw AssertionError()
if (!(element34 !in 3 until 1) != range1.contains(element34)) throw AssertionError()
}
fun testR1xE35() {
// with possible local optimizations
if (4.toDouble() in 3 until 1 != range1.contains(4.toDouble())) throw AssertionError()
if (4.toDouble() !in 3 until 1 != !range1.contains(4.toDouble())) throw AssertionError()
if (!(4.toDouble() in 3 until 1) != !range1.contains(4.toDouble())) throw AssertionError()
if (!(4.toDouble() !in 3 until 1) != range1.contains(4.toDouble())) throw AssertionError()
// no local optimizations
if (element35 in 3 until 1 != range1.contains(element35)) throw AssertionError()
if (element35 !in 3 until 1 != !range1.contains(element35)) throw AssertionError()
if (!(element35 in 3 until 1) != !range1.contains(element35)) throw AssertionError()
if (!(element35 !in 3 until 1) != range1.contains(element35)) throw AssertionError()
}