Cryptic bug for DMD v2.087.x

Daniel Kozak kozzi11 at gmail.com
Mon Aug 19 12:01:33 UTC 2019


On Mon, Aug 19, 2019 at 1:00 PM Simen Kjærås via Digitalmars-d
<digitalmars-d at puremagic.com> wrote:
>
> 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

you can even change 0.0 to just 0, but more interesting question is:
Is it already reported on bugzilla?



More information about the Digitalmars-d mailing list