Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit66.C
blobd4a3c627a9796673f947e5e70b014433850be56c
1 void f(int) {}
2 void f(double);
4 template <void (*fn)(int)>
5 void foo() {}
7 int main()
9   foo<f>();