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
/
vt-35026.C
blob
2590f35ccd0f49945174f70a985f70b430c9f7c6
1
// { dg-do compile { target c++11 } }
2
template<typename... T> struct A
3
{
4
T* x[1]; // { dg-error "parameter packs|T" }
5
};
6
7
A<int> a;