d4cbfcb79e
Added support for comparing platform types. Extracted logic to convert operator expressions to OperatorExpressionGenerator.
9 lines
164 B
Kotlin
Vendored
9 lines
164 B
Kotlin
Vendored
// !LANGUAGE: +ProperIeee754Comparisons +NewInference
|
|
|
|
fun box(): String {
|
|
if (-0.0 < 0.0) return "Fail 1"
|
|
if (-0.0 < 0) return "Fail 2"
|
|
|
|
return "OK"
|
|
}
|