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
/
variadic43.C
blob
b2f1f8dc05adedcbf59d5033f5619d5dd9b30ad3
1
// { dg-do compile { target c++11 } }
2
template<typename... Args>
3
int f(const Args&...);
4
5
void g()
6
{
7
int (*fp)(const int&, const float&) = &f;
8
}