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 } }
4 
5 [[gnu::packed]] struct A // { dg-warning "attribute" }
6 {
7   char c;
8   int x;
9   void f();
10 };
11