| 8 | class Base { |
| 9 | public: |
| 10 | virtual ~Base() = default; |
| 11 | virtual int get() const { return 101; } |
| 12 | |
| 13 | // Some compilers complain about implicitly defined versions of some of the following: |
nothing calls this directly
no outgoing calls
no test coverage detected