http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51477
Bug #: 51477
Summary: [c++0x] ICE with initialization of invalid non-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:
===========================
struct A
{
typedef int int T;
struct T x[1] = { 0 };
};
===========================
bug.cc:3:19: error: two or more data types in declaration of 'T'
bug.cc:1:8: internal compiler error: Segmentation fault
Please submit a full bug report, [etc.]