* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-47.C
blobaf74abd1862230fd530a8bc2cbcf49de3e060e9b
1 // { dg-do compile { target c++11 } }
2 // Example taken from dcl.attr.grammar:
4 int p[10];
5 void f()
7     int x = 42, y[5];
8     /* Here, the '[[' should have introduced an attribute, on a
9        lambda invocation an array subscripting expression.  */
10     int(p[[x] { return x; }()]); // { dg-error "expected|consecutive" }
11     /* Likewise, the '[[gnu::' is invalid here.  */
12     y[[] { return 2; }()] = 2; // { dg-error "expected|consecutive" }