[Bug c++/51474] New: [c++0x] ICE with pure virtual function in initialization of non-static data member

reichelt at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Thu Dec 8 22:29:00 GMT 2011


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

             Bug #: 51474
           Summary: [c++0x] ICE with pure virtual function in
                    initialization of non-static data member
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: reichelt@gcc.gnu.org


The following valid code snippet triggers an ICE on trunk:

============================
struct A
{
  virtual int foo() = 0;
  int i = foo();
};
============================

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



More information about the Gcc-bugs mailing list