repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
decomp39.C
blob
fcc806a472ba0aab69ab72c250f46cadc08bdbc6
1
// PR c++/85209
2
// { dg-do compile { target c++11 } }
3
// { dg-options "" }
4
5
template <int>
6
void
7
foo ()
8
{
9
auto [a] = []{}; // { dg-error "cannot decompose lambda closure type" }
10
} // { dg-warning "structured bindings only available with" "" { target c++14_down } .-1 }
11
12
void
13
bar ()
14
{
15
foo<0> ();
16
}