2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / decomp23.C
blob9e9278050c980015f1c7f23336bc0d335689d475
1 // PR c++/79205
2 // { dg-do compile { target c++11 } }
3 // { dg-options "" }
5 #include <tuple>
7 int
8 foo (std::tuple<int> t)
10   auto [x0] = t;        // { dg-warning "structured bindings only available with" "" { target c++14_down } }
11   return x0;