2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-65.C
blob1d2b2f04e7a590d06adf8d87c85d899839b99056
1 // PR c++/86063
2 // { dg-do compile { target c++11 } }
4 template <class... T>
5 struct S {
6   [[foobar(alignof(T))...]] char t; // { dg-warning "attribute directive ignored" }
7 };