10 lines
194 B
Kotlin
Vendored
10 lines
194 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// !LANGUAGE: +ProperIeee754Comparisons +NewInference
|
|
|
|
fun box(): String {
|
|
if (-0.0 < 0.0) return "Fail 1"
|
|
if (-0.0 < 0) return "Fail 2"
|
|
|
|
return "OK"
|
|
}
|