PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / decomp40.C
blob4210d6af6c72483c43e4a2aa14acf5178a0ba0fb
1 // PR c++/85209
2 // { dg-do compile { target c++11 } }
3 // { dg-options "" }
5 struct S { int a; } s;
7 template <int>
8 void
9 foo ()
11   auto [a] = []{ return s; } ();        // { dg-warning "structured bindings only available with" "" { target c++14_down } }
14 void
15 bar ()
17   foo<0> ();