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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic50.C
blob
99e16993457a887c0424fb40516106d69dcf6617
1
// { dg-do compile { target c++11 } }
2
int& f(int, double, ...);
3
4
template<typename... Args>
5
float& f(Args...);
6
7
float& g() {
8
return f(17, 3.14159, 3);
9
}