blob: d46ba37650cdd97b80cafc3ac943cc18579f14b2 [file] [log] [blame]
// Special g++ Options: -Wsynth
struct A {
operator int ();
A& operator= (int); // WARNING - not used below
};
main()
{
A a, b;
a = b; // WARNING - uses synthesized op=
}