aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/unify4.C
blob: 259920d4565b3aa52cf63016a722e5550797da84 (plain)
1
2
3
4
5
6
7
8
9
10
11
template <class T> void f (T);

void g ();
void g (int);

int
main ()
{
  f (g);			// ERROR - ambiguous unification
  return 0;
}