2004-10-03 Andrew Pinski <pinskia@physics.uc.edu>
PR c++/17797
* g++.dg/overload/template2.C: New test.
From-SVN: r88458
+2004-10-03 Andrew Pinski <pinskia@physics.uc.edu>
+
+ PR c++/17797
+ * g++.dg/overload/template2.C: New test.
+
2004-10-03 Kazu Hirata <kazu@cs.umass.edu>
PR tree-optimization/16632
--- /dev/null
+typedef int PyObject;
+typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
+template<class T> int _clear(PyObject* self);
+
+void _typeInfo()
+{
+ reinterpret_cast<PyCFunction>(_clear); // { dg-error "overloaded function" }
+}