This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/51326] New: [4.7 Regression] ICE with invalid override


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

             Bug #: 51326
           Summary: [4.7 Regression] ICE with invalid override
    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 invalid code snippet triggers an ICE on trunk:

========================
struct A
{
  virtual int& foo();
};

struct B : A
{
  B& foo();
};
========================

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]