1 // PR c++/86063
2 // { dg-do compile { target c++11 } }
3 
4 template <class... T>
5 struct S {
6   [[foobar(alignof(T))...]] char t; // { dg-warning "attribute directive ignored" }
7 };
8