| 11 | class Person { |
| 12 | public: |
| 13 | Person(const std::string& name, unsigned age) : name_(name), age_(age) {} |
| 14 | Person(const Person& rhs) : name_(rhs.name_), age_(rhs.age_) {} |
| 15 | virtual ~Person(); |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected