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