blob: aed69aa1fb0677f2da99af926902f7942d7a2128 [file] [log] [blame]
// { dg-do assemble }
// Test for not complaining about mismatches during unification.
template <void (*F)(int)> void f();
template <void (*F)(double)> void f();
extern void g(double);
void h ()
{
f<g>();
}