blob: 55bec1389af9bfd54ce5dd3156e61449cec4bf59 [file] [log] [blame]
struct A {
virtual void doNothing() {}
};
struct B : A {
void doNothing() override {}
};