Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / overload14.C
bloba4c6cff8a2171992dabe0c3bd29814fdf7e02184
1 // { dg-do assemble  }
2 // Bug: g++ fails to recognize that the template matches the target type.
4 template <class T> void foo (T *, int);
6 struct A;
7 void bar ()
9   void (*p)(A *, int) = &foo;