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-variadic6.C
blob
d9707d05c70df79eb1c01399b367d617a0d2ec55
1
// PR c++/84160
2
// { dg-do compile { target c++11 } }
3
4
template < typename ... T > void f (T ... a)
5
{
6
[a ...] { [a ...] {}; };
7
}
8
9
void g ()
10
{
11
f < int > (0);
12
}