* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-18.C
blob3df13e6440b8c304e588af8b34cac2d1f83823f9
1 // PR c++/17542
2 // Test that we warn when an attribute preceding the class-key is ignored.
3 // { dg-do compile { target c++11 } }
5 [[gnu::packed]] struct A // { dg-warning "attribute" }
7   char c;
8   int x;
9   void f();