#include <iostream>
using namespace std;

struct Base
{
    virtual void method() = 0;
};

struct Derived : Base
{
    void method() { Base::method(); };
};

int main()
{
    Derived d;
    d.method();
}
