blob: 5881040417ab8937963941504071f18633b80619 [file] [log] [blame]
class A : public B
{
A& operator=(const A& other)
{
if (this == &other) return *this;
B::operator=(other);
if (this == &other) return *this;
B::opera(other);
copy(other);
return *this;
}
};