* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-9.C
blob3dc51eef9e8938808692eca291666f0349234365
1 // { dg-do compile { target c++11 } }
3 class C;
4 struct S;
5 union U;
6 enum e {};
7 enum [[gnu::unused]] e; // { dg-warning "already defined" }
9 struct [[gnu::unused]] B *p;    //  { dg-warning "attributes" }
11 template <class T> struct A { };
12 struct [[gnu::unused]] A<int>;  //  { dg-warning "attributes" }