* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-70001-1.C
blobe68ff0e58a05cb97e9d690ceb251f8192154ecfa
1 // PR c++/70001
2 // { dg-do compile { target c++11 } }
4 struct B
6   int a;
7   constexpr B () : a (0) { }
8 };
10 struct A
12   B b[1 << 19];
13 } c;