view gcc/testsuite/g++.dg/cpp0x/gen-attrs-47.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { dg-do compile { target c++11 } }
// Example taken from dcl.attr.grammar:

int p[10];
void f()
{
    int x = 42, y[5];
    /* Here, the '[[' should have introduced an attribute, on a
       lambda invocation an array subscripting expression.  */
    int(p[[x] { return x; }()]); // { dg-error "expected|consecutive" }
    /* Likewise, the '[[gnu::' is invalid here.  */
    y[[] { return 2; }()] = 2; // { dg-error "expected|consecutive" }
}