#B Various concrete cars with individual speed
| 12 | |
| 13 | // #B Various concrete cars with individual speed |
| 14 | struct Mercedes : Car { |
| 15 | constexpr int speed() const override { return 5; } |
| 16 | }; |
| 17 | struct Toyota : Car { |
| 18 | constexpr int speed() const override { return 6; } |
| 19 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected