blob: a19a0f8e47bebe68ea3d7192a5c5489f5150ce1a [file] [log] [blame]
// PR c++/65591
struct ss {
ss() {};
};
struct C {
ss s[1000];
};
int main() {
C cs[5] = {};
}