blob: a4c6cff8a2171992dabe0c3bd29814fdf7e02184 [file] [log] [blame]
// { dg-do assemble }
// Bug: g++ fails to recognize that the template matches the target type.
template <class T> void foo (T *, int);
struct A;
void bar ()
{
void (*p)(A *, int) = &foo;
}