blob: 05d15ffe40b649be129710c7de9f1fa3d9bc2283 [file] [log] [blame]
// PR c++/79653
// { dg-do compile { target c++11 } }
template <typename... T>
struct A { alignas(int...) char c; }; // { dg-error "no parameter packs|expected" }
A<int, double> a;