From-SVN: r23401
This commit is contained in:
Jason Merrill 1998-10-28 06:44:23 -05:00
parent c98927faa9
commit 41cdcc1087

View File

@ -0,0 +1,11 @@
// 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>();
}