| 304 | Test(int a) { cout << "Test(int)\n"; } |
| 305 | Test(int a, int b) { cout << "Test(int, int)\n"; } |
| 306 | ~Test() { cout << "~Test()\n"; } |
| 307 | Test(const Test&) { cout << "Test(const Test&)\n"; } |
| 308 | Test(Test&&) { cout << "Test(Test&&)\n"; } |
| 309 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected