| 1735 | class HeldBySmartPtr { |
| 1736 | public: |
| 1737 | HeldBySmartPtr(int i, const std::string& s) : i(i), s(s) { |
| 1738 | } |
| 1739 | |
| 1740 | static CustomSmartPtr<HeldBySmartPtr> newCustomPtr(int i, |
| 1741 | const std::string& s) { |
nothing calls this directly
no outgoing calls
no test coverage detected