| 301 | { |
| 302 | public: |
| 303 | Test() { cout << "Test()\n"; } |
| 304 | Test(int a) { cout << "Test(int)\n"; } |
| 305 | Test(int a, int b) { cout << "Test(int, int)\n"; } |
| 306 | ~Test() { cout << "~Test()\n"; } |
nothing calls this directly
no outgoing calls
no test coverage detected