cxx_override.cpp 94 B

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