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

             Bug #: 51476
           Summary: [c++0x] [4.7 Regression] ICE with invalid
                    pointer-to-member template parameter
    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 invalid code snippet triggers an ICE on trunk when compiled with
"-std=c++0x":

=============================
template<int> struct A {};

struct B
{
  int i;
  A<&B::i> a;
};
=============================

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

Reply via email to