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
/
variadic-ex5.C
blob
841562f8114cf6e87d55395ab6a2820452410d5a
1
// { dg-do compile { target c++11 } }
2
template<typename... Types> void f(Types... values);
3
4
void g()
5
{
6
f<int*, float*>(0, 0, 0); // Types is deduced to the sequence int*, float*, int
7
}