digitalmars.D.bugs - [Issue 7175] New: Zero-length static array .ptr is always null
- d-bugmail puremagic.com (26/26) Dec 28 2011 http://d.puremagic.com/issues/show_bug.cgi?id=7175
http://d.puremagic.com/issues/show_bug.cgi?id=7175 Summary: Zero-length static array .ptr is always null Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: thecybershadow gmail.com --- Comment #0 from Vladimir Panteleev <thecybershadow gmail.com> 2011-12-28 03:26:59 PST --- void main() { struct S { ubyte[0] arr; } S s; assert(s.arr.ptr !is null); } s.arr.ptr should be the same as &s. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Dec 28 2011