summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/overload14.C
blob: a4c6cff8a2171992dabe0c3bd29814fdf7e02184 (plain)
1
2
3
4
5
6
7
8
9
10
// { 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;
}