* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alignas11.C
blob73c54da00f638dc04d2352931f2244a297e8e267
1 // PR c++/80241
2 // { dg-do compile { target c++11 } }
4 template <typename... T>
5 struct A
7   [[gnu::aligned (alignof(A))...]] char c; // { dg-error "expansion pattern" }
8 };
10 A<int> a;