2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / decomp44.C
blob168a13e0dc991eec0f587e0b56998cf8f81707b5
1 // PR c++/85227
2 // { dg-do compile { target c++11 } }
3 // { dg-options "" }
5 extern struct A a;
7 template<int> void foo()
9   auto[i] = a;  // { dg-warning "incomplete" }
10 }  // { dg-warning "structured bindings only available with -std=c..17 or -std=gnu..17" "" { target c++14_down } .-1 }