| 120 | { |
| 121 | public: |
| 122 | Object() { std::cout << "Construct at " << this << "\n"; }; |
| 123 | ~Object() { std::cout << "Destruct at " << this << "\n"; }; |
| 124 | Object(const Object &) { std::cout << "Const Copy at " << this << "\n"; }; |
| 125 | Object(Object &&) { std::cout << "Move at " << this << "\n"; }; |
nothing calls this directly
no outgoing calls
no test coverage detected