blob: 6f21c9c9ec22c051733c390780a49e862437ebce [file] [log] [blame]
// { dg-options -std=c++17 }
int a[3];
struct S { int b, c, d; } s;
void
foo ()
{
auto [ b, c, d ] = a;
auto [ e, f, g ] = s;
auto [ h, i, j ] { s };
auto [ k, l, m ] { s, };
auto [ n, o, p ] { a };
auto [ q, r, t ] ( s );
auto [ u, v, w ] ( s, ); // { dg-error "expected primary-expression before '.' token" }
// { dg-error "invalid initializer for structured binding declaration" "" { target *-*-* } .-1 }
auto [ x, y, z ] ( a );
}