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 c++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr32115.C
blob
fafa4eed313a4bdbf9e8ddb0339601b3ba1b8443
1
// { dg-do compile { target c++11 } }
2
template<typename ...T, int = 0> struct A {}; // { dg-error "end of" }
3
4
A<int> a;