2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / decomp39.C
blobfcc806a472ba0aab69ab72c250f46cadc08bdbc6
1 // PR c++/85209
2 // { dg-do compile { target c++11 } }
3 // { dg-options "" }
5 template <int>
6 void
7 foo ()
9   auto [a] = []{};      // { dg-error "cannot decompose lambda closure type" }
10 }                       // { dg-warning "structured bindings only available with" "" { target c++14_down } .-1 }
12 void
13 bar ()
15   foo<0> ();