* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-array3.C
blob12f42f1834d4222bbb0575ddcedd707738a6004c
1 // PR c++/48132
2 // { dg-do compile { target c++11 } }
4 struct C
6   constexpr C (int x) : c (x) {}
7   int c;
8 };
10 void
11 foo ()
13   C a[] = { C (0) };