2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / warning9.C
blob9423ac1269b6960a285781bc35993243b279c990
1 // { dg-do assemble  }
2 // { dg-options "-Wsynth" }
4 struct A {
5   operator int ();
6   A& operator= (int);           // { dg-warning "" } not used below
7 };
9 main()
11   A a, b;
13   a = b;                        // { dg-warning "" } uses synthesized op=