On Friday, 15 June 2018 at 16:49:47 UTC, bauss wrote:
https://github.com/dlang/phobos/pull/6583
Thanks a lot.
On Friday, 15 June 2018 at 15:00:38 UTC, Alex wrote:
Hi all,
do you see any valid reason why the last line yields an error:
import std.typecons;
void main()
{
void* ptr1;
void* ptr2;
assert(ptr1 is null);
assert(ptr2 is null);
assert(ptr1 == ptr2);
Hi all,
do you see any valid reason why the last line yields an error:
import std.typecons;
void main()
{
void* ptr1;
void* ptr2;
assert(ptr1 is null);
assert(ptr2 is null);
assert(ptr1 == ptr2);
Nullable!uint val1;
Nullable!uint val2;