1 // { dg-do compile { target c++11 } }
2 // Example taken from dcl.attr.grammar:
3 
4 int p[10];
f()5 void f()
6 {
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" }
13 }
14