* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alignas9.C
blob05d15ffe40b649be129710c7de9f1fa3d9bc2283
1 // PR c++/79653
2 // { dg-do compile { target c++11 } }
4 template <typename... T>
5 struct A { alignas(int...) char c; }; // { dg-error "no parameter packs|expected" }
6 A<int, double> a;