From-SVN: r23604
This commit is contained in:
Jason Merrill 1998-11-10 22:37:20 -05:00
parent 78ab9a3cc8
commit a8ec10c912
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
template <class T> void f (T);
void g ();
void g (int);
int
main ()
{
f (g); // ERROR - ambiguous unification
return 0;
}