https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100967

            Bug ID: 100967
           Summary: d: ICE: Segmentation fault
                    (../../gcc/d/dmd/declaration.c:1258) with -fno-rtti
           Product: gcc
           Version: 9.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: d
          Assignee: ibuclaw at gdcproject dot org
          Reporter: ibuclaw at gdcproject dot org
  Target Milestone: ---

With an empty object module - or an object module without a `class Object'
definition, a segfault occurs when attempting to use anything that requires
TypeInfo.

---
module object;
extern(C) int main()
{
    int[int] aa;
    aa[0] = 1;
    return 0;
}

Reply via email to