Files
kotlin-fork/compiler/testData/codegen/box/ieee754/lessDouble.kt
T
Mads Ager e8a640851a FIR: Change the Fir2Ir handling of smart casts.
Generate the expression with the original type and then insert
an implicit conversion. That matches the behavior of psi2ir
better and therefore avoids breaking backend assumptions.

In particular, IrGetValue expects the type of the underlying
symbol and the type of the IrGetValue to be the same.
2020-01-31 09:31:52 +01:00

25 lines
723 B
Kotlin
Vendored

// !LANGUAGE: -ProperIeee754Comparisons
// DONT_TARGET_EXACT_BACKEND: JS_IR
fun less1(a: Double, b: Double) = a < b
fun less2(a: Double?, b: Double?) = a!! < b!!
fun less3(a: Double?, b: Double?) = a != null && b != null && a < b
fun less4(a: Double?, b: Double?) = if (a is Double && b is Double) a < b else null!!
fun less5(a: Any?, b: Any?) = if (a is Double && b is Double) a < b else null!!
fun box(): String {
if (-0.0 < 0.0) return "fail 0"
if (less1(-0.0, 0.0)) return "fail 1"
if (less2(-0.0, 0.0)) return "fail 2"
if (less3(-0.0, 0.0)) return "fail 3"
if (less4(-0.0, 0.0)) return "fail 4"
// Smart casts behavior in 1.2
if (!less5(-0.0, 0.0)) return "fail 5"
return "OK"
}