www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 7175] New: Zero-length static array .ptr is always null

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



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