blob: 433f0b193e393fe509f485ac8123824485e11fe6 [file] [log] [blame]
// Test for not complaining about mismatches during unification.
// Build don't link:
template <void (*F)(int)> void f();
template <void (*F)(double)> void f();
extern void g(double);
void h ()
{
f<g>();
}