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
Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git]
/
main
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic41.C
blob
df113679fffb2c14ce29a7af63a5f98c986730cd
1
// A function parameter pack is only deduced if it's at the end
2
// { dg-do compile { target c++11 } }
3
template<typename... Args>
4
void f(const Args&... args, int oops);
5
6
int main()
7
{
8
f<>(1);
9
f(1);
10
f<int>(1,2);
11
f(1,2); // { dg-error "no match" }
12
}
13
14
// { dg-prune-output "note" }