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

             Bug #: 51029
           Summary: [4.7 Regression] ICE with -std=c++0x
    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


Compiling the following valid code snippet with "-std=c++0x" crashes on trunk
(it works without the flag):

========================
struct A
{
  void foo();
};

struct B : virtual A
{
  template<int> B()
  {
    foo();
  }
};
========================

bug.cc: In constructor 'B::B()':
bug.cc:10:10: internal compiler error: Segmentation fault
Please submit a full bug report, [etc.]

Reply via email to