Files
kotlin-fork/compiler/testData/codegen/box/ieee754/lessDouble_properIeeeAndNewInference.kt
T
Alexander Udalov 1071919706 Remove backend tests on old inference
Also remove any mentions of NewInference, and rename some tests.
2021-11-09 20:07:33 +01:00

9 lines
150 B
Kotlin
Vendored

// !LANGUAGE: +ProperIeee754Comparisons
fun box(): String {
if (-0.0 < 0.0) return "Fail 1"
if (-0.0 < 0) return "Fail 2"
return "OK"
}