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
/
variadic-explicit1.C
blob
605c55beaa07d90ca559b13e9c7da88dddf65405
1
// { dg-do compile { target c++11 } }
2
3
template<class T, class U> struct A { };
4
template<class... T, class ... U> void f( A<T,U>... p);
5
6
void g() {
7
f<int>(
8
A<int,unsigned>(),
9
A<short,unsigned short>()
10
);
11
}