Update ChangeLogs and version numbers for 2.95.3 release
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / overload4.C
blobf4e58e27fc7e20140bddb517a27e780ca7709c96
1 // Build don't link:
3 template <class T> void foo(T);
5 template <class T> void bar(void (*)(T), T);
7 void baz() {
8   bar<int>(foo, 1);
9   bar(foo<int>, 1);
10   bar<int>(foo<int>, 1);
11   bar(foo, 1);