* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-array5.C
blob12080a0ab4bb910c3fdd19138c0247bf78599b6b
1 // PR c++/80415
2 // { dg-do compile { target c++11 } }
4 struct A {
5   A(int, int, const int (&)[1] = {});
6 };
7 A fn1() { return {0, 0}; }