| 41 | VBase(VBase &&) = default; |
| 42 | VBase &operator=(VBase &&) = default; |
| 43 | virtual ~VBase() = default; |
| 44 | virtual int ping() const { return 1; } |
| 45 | int vbase_tag = 42; // ensure it's not empty |
| 46 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected