| 6 | # include <memory> |
| 7 | |
| 8 | struct Car { // #A Base class for all cars |
| 9 | virtual ~Car() = default; |
| 10 | constexpr virtual int speed() const = 0; |
| 11 | }; |
| 12 | |
| 13 | // #B Various concrete cars with individual speed |
| 14 | struct Mercedes : Car { |
nothing calls this directly
no outgoing calls
no test coverage detected