cxx_override.cpp 94 B

1234567
  1. struct A {
  2. virtual void doNothing() {}
  3. };
  4. struct B : A {
  5. void doNothing() override {}
  6. };