* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-list1.C
blobe54be050bdd4f35ccd4716e8a8003a3f33a0419d
1 // PR c++/50563
2 // { dg-do compile { target c++11 } }
4 struct S1 {
5   int a{10}, b{20};     // OK
6 };
8 struct S2 {
9   int a, b = 20;        // OK
12 struct S3 {
13   int a = 10, b = 20;