blob: 3f5a98d4e1a3d98f674ac111e7159ee81749bcc0 [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;
}
};