1071919706
Also remove any mentions of NewInference, and rename some tests.
9 lines
150 B
Kotlin
Vendored
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"
|
|
}
|