PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / attrib18.C
blobab9fea0950cbdcbe18d051ea4f50002a221a41c2
1 // PR c++/17542
2 // Test that we warn when an attribute preceding the class-key is ignored.
3 // { dg-do compile }
5 __attribute__ ((packed)) struct A // { dg-warning "attribute" }
7   char c;
8   int x;
9   void f();