On Thursday, 13 June 2019 at 21:41:54 UTC, Walter Bright wrote:
On 6/12/2019 4:51 PM, Martin Nowak wrote:
Glad to announce the first beta for the 2.086.1 point release, ♥ to the
20 contributors.

http://dlang.org/download.html#dmd_beta
http://dlang.org/changelog/2.086.1.html

As usual please report any bugs at
https://issues.dlang.org

-Martin


Thank you, Martin!

I see in the newest pulls that "NULL" is not being tested correctly. I believe they should all use IS NULL or !IS null.

If I am correct, i would ask that all code be checked for this issue.


From Ali's Book and my experience in Database coding.


Determining whether it is null
However, because the == operator needs actual objects to compare, the
expression below cannot be compiled:
if (variable == null) // ← compilation ERROR
however this code must compile when it should not.

Reply via email to