| 24 | }; |
| 25 | |
| 26 | class Greeter { |
| 27 | public: |
| 28 | virtual void sayHello(const char *name) |
| 29 | { |
| 30 | printf("Hello, %s!\n", name); |
| 31 | } |
| 32 | }; |
| 33 | |
| 34 | void greet(Greeter *greeter); |
| 35 | void doNothing(); |
nothing calls this directly
no outgoing calls
no test coverage detected