* c-common.c (get_priority): Add check for
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit75.C
blobaed69aa1fb0677f2da99af926902f7942d7a2128
1 // { dg-do assemble  }
2 // Test for not complaining about mismatches during unification.
4 template <void (*F)(int)> void f();
5 template <void (*F)(double)> void f();
6 extern void g(double);
8 void h ()
10   f<g>();