// PR c++/99899 // { dg-do compile { target c++20 } } template concept C1 = sizeof(T) > sizeof(int[1]); template void f() { int x[] = {1,2}; int y[] = {3}; C1 auto [a,b] = x; // { dg-error "structured binding declaration cannot have constrained 'auto' type 'auto \\\[requires ::C1<, >\\\]'" } C1 auto [c] = y; // { dg-error "structured binding declaration cannot have constrained 'auto' type 'auto \\\[requires ::C1<, >\\\]'" } // { dg-error "constraints" "" { target *-*-* } .-1 } } template void g() { T x[] = {1,2}; T y[] = {3}; C1 auto [a,b] = x; // { dg-error "structured binding declaration cannot have constrained 'auto' type 'auto \\\[requires ::C1<, >\\\]'" } C1 auto [c] = y; // { dg-error "structured binding declaration cannot have constrained 'auto' type 'auto \\\[requires ::C1<, >\\\]'" } // { dg-error "constraints" "" { target *-*-* } .-1 } } template void g(); template concept C2 = sizeof...(Ts) > 1; struct S { int a, b; } s; template void h() { const C2 auto& [a, b] = s; // { dg-error "structured binding declaration cannot have constrained 'auto' type 'const auto \\\[requires ::C2<, >\\\]'" } } template void h();