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
/
decomp40.C
blob
4210d6af6c72483c43e4a2aa14acf5178a0ba0fb
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
9
foo ()
10
{
11
auto [a] = []{ return s; } (); // { dg-warning "structured bindings only available with" "" { target c++14_down } }
12
};
13
14
void
15
bar ()
16
{
17
foo<0> ();
18
}