As the IEEE standard says, 0 == (-0) even though they have different signs. It's quite reasonable, nothing is still nothing whatever sign you use. This means that
let nzero = (-0.0)
a = abs nzero
in a == 0.0 && a == nzero
evaluates to True, because, in fact, it is the same whether abs x == 0 or abs x == (-0). Even though its a questionable choice, it does not seem to me like abs (-0.0)
== (-0.0) is a bug to me.
Edit:
As the comments point out, show 0.0 /= show (-0.0). I'm not sure on how to justify this. The only thing that came to my mind at the moment is that, maybe, Eq does not represent a bounding contract with respect to referential transparency, e.g. two values does of a type do not really have to be represented in the same way to be considered equatable.
I'll write an update as soon as I can find some references about how Eq should be instantiated.
isNegativeZerofunction – jberryman May 1 '12 at 14:05