* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-aggr1.C
blobe07d392a66477880fbb46c4b852821a194c809d4
1 // PR c++/65815
2 // { dg-do compile { target c++11 } }
4 struct array {
5   int data [2];
6 };
8 struct X {
9   array a = { 1, 2 };