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-nested4.C
blob
140ed30e4fb148812c46d2b560ce89b4e936fd72
1
// PR c++/47687
2
// { dg-do compile { target c++11 } }
3
4
template <class T> struct A { };
5
6
auto inl = []{ return []{}; }();
7
typedef decltype(inl) inlt;
8
9
A<inlt> a;