| 3 | using namespace std; |
| 4 | |
| 5 | class Person |
| 6 | { |
| 7 | public: |
| 8 | string name; |
| 9 | Person(string n): name(n){} |
| 10 | void print() |
| 11 | { |
| 12 | cout << "Name: " << name << endl; |
| 13 | } |
| 14 | }; |
| 15 | |
| 16 | class Person2 |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected