blob: 415c6814408d3667f1fed6956086e37e77a58f12 [file]
// IGNORE_BACKEND: JS
data class Test(val z1: Double, val z2: Double?)
fun box(): String {
val x = Test(Double.NaN, Double.NaN)
val y = Test(Double.NaN, Double.NaN)
return if (x == y) "OK" else "fail"
}