https://issues.dlang.org/show_bug.cgi?id=18197
Rainer Schuetze <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Rainer Schuetze <[email protected]> --- Corrected test case: struct A { double a; } A makeA(double value) { return A(value); } double test(double x) { ulong p = *cast(ulong *)&x; return makeA(x).a; } --
