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++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr31432.C
blob
2048077c36a6144fe3bf2d9defc99a4514fe6b93
1
// { dg-do compile { target c++11 } }
2
template<typename..., typename> struct A // { dg-error "parameter pack" }
3
{
4
static int i;
5
};
6
7
A<int, int> a;
8
A<char,int> b;