Cryptic bug for DMD v2.087.x

Simen Kjærås simen.kjaras at gmail.com
Mon Aug 19 10:59:02 UTC 2019


On Monday, 19 August 2019 at 10:26:41 UTC, ag0aep6g wrote:
> Reduced further:
>
> ----
> real sin(real x) { return 0; }
> double V2_V1_obl(double beta)
> {
>     return sin(beta) / sin(sin(beta));
> }
> ----

One more:

real fun(real x) { return 0; }

double bug()
{
     return 0.0 / fun(7);
}

--
   Simen


More information about the Digitalmars-d mailing list