(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
explicit75.C
// { 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>();
}