* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-4.C
blob023d83967774070cd3fa63f273c6825cc3b1e05e
1 // { dg-options "-Wunused -pedantic-errors" }
2 // { dg-do compile { target c++11 } }
3 // Test for syntax support of various attribute permutations.
5 int
6 [[noreturn]] // { dg-warning "ignored" }
7 one
8 [[gnu::unused]]
9 (void);
11 int one_third [[noreturn]] [[gnu::unused]] (void);
13 int [[gnu::unused]] one_half(); // { dg-warning "ignored" }
15 static
16 [[noreturn]] // { dg-warning "ignored" }
17 void two [[gnu::unused]] (void) {}
21 [[gnu::unused]]
22 int
23 five(void)
24 [[noreturn]] // { dg-warning "ignored" }
25 { return 0; }
27 [[noreturn]]
28 void
29 six (void)