1 2 3 4 5 6 7 8 9 10 11 12 13
// PR c++/78931 // { dg-do run { target c++11 } } // { dg-options "" } int main () { int x = 99; struct S { int &x; }; S s{x}; auto [p] = s; // { dg-warning "structured bindings only available with" "" { target c++14_down } } return p - 99; }