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-defarg2.C
blob
35104c392a39e3cfaf1e98f30f18e6f87de00fe6
1
// PR c++/43886
2
// { dg-do compile { target c++11 } }
3
4
void f2() {
5
int i = 1;
6
void g5(int = ([]{ return sizeof i; })());
7
}