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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
vt-34606.C
blob
a032bfc0a10a3e90856333a9df1cc0e38bea7539
1
// { dg-do compile { target c++11 } }
2
template<typename...> struct A;
3
4
template<typename T, typename... U> struct A<T, U> // { dg-error "parameter packs|U" }
5
{
6
template<typename> struct B;
7
8
template<typename X> struct B<X*> {};
9
};