aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/overload14.C
blob: 6a5d3dc2d5ac7bedd9b226c4a529afc91bc353b5 (plain)
1
2
3
4
5
6
7
8
9
10
// Bug: g++ fails to recognize that the template matches the target type.
// Build don't link:

template <class T> void foo (T *, int);

struct A;
void bar ()
{
  void (*p)(A *, int) = &foo;
}