* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-49.C
blob8b68f927368717f4d92233e46c4b59b6be851306
1 // { dg-do compile { target c++11 } }
3 typedef char layout_type;
5 template<class> struct A {
6   layout_type member alignas (double);
7 };
9 static_assert (alignof (A<int>) == alignof (double),
10                "alignment of struct A must be alignof (double)");
12 template<class> struct alignas (alignof (long double)) B {
13   layout_type member;
16 static_assert (alignof (B<int>) == alignof (long double),
17                "alignment of struct A must be alignof (double double)");