https://issues.dlang.org/show_bug.cgi?id=3632
Nathan S. <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED CC| |[email protected] Resolution|FIXED |--- --- Comment #37 from Nathan S. <[email protected]> --- This was incorrectly marked fixed. `float is float` is still not a bitwise comparison. --- import std.math : isIdentical; assert(!isIdentical(float.nan, -float.nan)); // passes assert(float.nan is -float.nan); // also passes --- --
