* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-38.C
blob3db981aeb224d68ea576889d35fca7801d0a68fb
1 // { dg-do compile { target c++11 } }
2 // PR c++/36625
4 template <int N>
5 struct A {
6   struct S { short f[3]; } [[gnu::aligned (N)]]; // { dg-warning "ignored" }
7 };
9 int main ()
11   A<4>::S s;