* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr58510.C
blob71f25209826a1f7b7a4bb61aa81a2fe7524ff97c
1 // PR c++/58510
2 // { dg-do compile { target c++11 } }
4 void foo()
6   union
7   {             // { dg-error "multiple" }
8     int i = 0;
9     char c = 0;
10   };