xxxxxxxxxx
// ldc options: -ffast-math -enable-inlining
import std;
void main()
{
double r = -0.0;
writeln(__LINE__, ":\t", r.format!"% 4.3f"); // -0.000
writeln(__LINE__, ":\t", (r + 0).format!"% 4.3f"); // 0.000
writeln(__LINE__, ":\t", r.posZero.format!"% 4.3f"); // -0.000 SURPRISE!
}
T posZero(T)(T value) if (isFloatingPoint!T)
{
return value + 0;
}