| 3 | #include <cstring> |
| 4 | |
| 5 | class Foo { |
| 6 | public: |
| 7 | virtual void greet() { printf("Foo says hi\n"); } |
| 8 | void me() { printf("Foo is best\n"); } |
| 9 | }; |
| 10 | |
| 11 | class Bar : public Foo { |
| 12 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected