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
/cp
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
overload
/
template1.C
blob
5bfad8464f7de340d56be7a490221ae18dd684e5
1
template<typename T> T Foo (int) {T d;}
2
3
void Baz (void (*)(int), int);
4
5
int Foo ();
6
int Baz (int (*)(), float);
7
8
void Bar ()
9
{
10
Baz (Foo, 1.0f);
11
12
}