Re: comparing nullables

2018-06-15 Thread Alex via Digitalmars-d-learn
On Friday, 15 June 2018 at 16:49:47 UTC, bauss wrote: https://github.com/dlang/phobos/pull/6583 Thanks a lot.

Re: comparing nullables

2018-06-15 Thread bauss via Digitalmars-d-learn
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);