blob: 7c3499297865b5347fe7577c63e4430193df2e59 [file] [log] [blame]
// PR c++/85062
// { dg-do compile { target c++11 } }
template<typename... T> struct A
{
int alignas(T...) i; // { dg-warning "ignored" }
};
A<int> a;