| 4 | #if not(defined(__GNUC__) && !defined(__clang__)) |
| 5 | |
| 6 | struct Car { // #A Base class for all cars |
| 7 | virtual ~Car() = default; |
| 8 | constexpr virtual int speed() const = 0; |
| 9 | }; |
| 10 | |
| 11 | // #B Various concrete cars with individual speed |
| 12 | struct Mercedes : Car { |
nothing calls this directly
no outgoing calls
no test coverage detected