/cp
[official-gcc.git] / gcc / testsuite / g++.dg / overload / template1.C
blob5bfad8464f7de340d56be7a490221ae18dd684e5
1 template<typename T> T Foo (int) {T d;}
3 void Baz (void (*)(int), int);
5 int Foo ();
6 int Baz (int (*)(), float);
8 void Bar ()
10   Baz (Foo, 1.0f);
11