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++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic49.C
blob
49c26753efd9ef39add09801bcf60f640d306909
1
// { dg-do compile { target c++11 } }
2
int& f(...);
3
4
template<typename... Args>
5
float& f(Args...);
6
7
float& g() {
8
return f(17, 3.14159);
9
}