blob: 9ed0da3de3e36f704e0eb5b935dd50af7f5de17a [file] [log] [blame]
// { dg-do compile { target 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 );
}