http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51611

             Bug #: 51611
           Summary: [c++0x] ICE with non-static data member initializer
                    and virtual base class
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassig...@gcc.gnu.org
        ReportedBy: reich...@gcc.gnu.org


The following valid code snippet triggers an ICE on trunk:

========================
struct A
{
  int i;
};

struct B : virtual A
{
  int j = i;
};
========================

bug.cc:8:11: internal compiler error: Segmentation fault
Please submit a full bug report, [etc.]

Reply via email to