FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / warning9.C
blobd46ba37650cdd97b80cafc3ac943cc18579f14b2
1 // Special g++ Options: -Wsynth
3 struct A {
4   operator int ();
5   A& operator= (int);           // WARNING - not used below
6 };
8 main()
10   A a, b;
12   a = b;                        // WARNING - uses synthesized op=