1 // PR c++/85209
2 // { dg-do compile { target c++11 } }
3 // { dg-options "" }
4 
5 struct S { int a; } s;
6 
7 template <int>
8 void
foo()9 foo ()
10 {
11   auto [a] = []{ return s; } ();	// { dg-warning "structured bindings only available with" "" { target c++14_down } }
12 };
13 
14 void
bar()15 bar ()
16 {
17   foo<0> ();
18 }
19