* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-70001-4.C
blob5c4a4add00d7a8b755573eab1f4a5540fde14ae6
1 // PR c++/70001
3 // This is still slow to compile, only run it once.
4 // { dg-do compile { target c++14_only } }
6 struct B
8   int a;
9   constexpr B () : a (0) { }
12 struct A
14   B b[1 << 19][1][1][1];
15 } c;