blob: e68ff0e58a05cb97e9d690ceb251f8192154ecfa [file] [log] [blame]
// PR c++/70001
// { dg-do compile { target c++11 } }
struct B
{
int a;
constexpr B () : a (0) { }
};
struct A
{
B b[1 << 19];
} c;