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++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
vt-35242.C
blob
9af855e3b09ecabf4524ef25eef423e004609670
1
// { dg-do compile { target c++11 } }
2
struct A
3
{
4
template<typename... T> struct B;
5
};
6
7
template<typename... T> struct A::B<T*> {}; // { dg-error "parameter packs|T" }