#include <iostream>
usingnamespace std;
class Base
{
public:
Base operator+(const Base& other)
{
Base ret;
return ret;
}
};
class Derived: public Base
{
public:
Derived operator+(const Derived& other)
{
//how can I call Base operator+
}
};
int main()
{
Derived b, b2, b3;
b = b2 + b3;
return 0;
}