April 05, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1095

           Summary: CodeView: length of struct type incorrectly set to zero
           Product: D
           Version: 1.010
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: jascha@mainia.de


for the following code the length field of the CV type record for POINT is set to zero.

import std.c.windows.windows;

void main()
{
    POINT p;
}


--