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