http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51461
Bug #: 51461
Summary: [c++0x] [4.7 Regression] ICE with invalid
initialization of static data member
Classification: Unclassified
Product: gcc
Version: 4.7.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
AssignedTo: [email protected]
ReportedBy: [email protected]
The following invalid code snippet triggers an ICE on trunk when compiled with
"-std=c++0x":
=========================
struct A
{
static const A a = 0;
};
=========================
bug.cc:3:22: internal compiler error: in literal_type_p, at cp/semantics.c:5578
Please submit a full bug report, [etc.]