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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr32126.C
blob
c525cca684b16cd377c7e15944cf642a6c75f906
1
// { dg-options "-std=c++0x" }
2
template<typename...> struct A;
3
4
template<typename...T> struct A<T> // { dg-error "not expanded|T|" }
5
{
6
static int i;
7
};
8
9
A<char> a; // { dg-error "incomplete" }
10
A<int> b; // { dg-error "incomplete" }