* g++.old-deja/g++.jason/warning9.C (struct A, main): Adjust
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97360
138bc75d-0d04-0410-961f-
82ee72b054a4
+2005-03-31 Gabriel Dos Reis <gdr@integrable-solutions.net>
+
+ PR c++/18644
+ * g++.old-deja/g++.jason/warning9.C (struct A, main): Adjust
+
2005-04-01 Joseph S. Myers <joseph@codesourcery.com>
PR c/17855
struct A {
operator int ();
- A& operator= (int); // { dg-warning "" } not used below
+ A& operator= (int);
};
+int
main()
{
A a, b;
- a = b; // { dg-warning "" } uses synthesized op=
+ a = b;
}