| 89 | |
| 90 | |
| 91 | struct MyInt { |
| 92 | public: |
| 93 | MyInt(int value) : m_value(value) {} |
| 94 | int value() const { return m_value; } |
| 95 | private: |
| 96 | int m_value; |
| 97 | }; |
| 98 | |
| 99 | std::ostream& operator<<(std::ostream& os, const MyInt& obj) { |
| 100 | os << obj.value(); |
nothing calls this directly
no outgoing calls
no test coverage detected