repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: checking of pointer targets for structure constructors [PR56423]
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
lambda
/
lambda-vla1.C
blob
91498c4589a9fe753c01b8c5223f43fb79b5d271
1
// PR c++/84429
2
// { dg-do compile { target c++11 } }
3
// { dg-options "" }
4
5
void foo(int i)
6
{
7
char x[i];
8
[&]{ [&]{ return x; }; };
9
}