| 12 | namespace { |
| 13 | |
| 14 | struct truthy { |
| 15 | truthy(bool b):m_value(b){} |
| 16 | operator bool() const { |
| 17 | return false; |
| 18 | } |
| 19 | bool m_value; |
| 20 | }; |
| 21 | |
| 22 | std::ostream& operator<<(std::ostream& o, truthy) { |
| 23 | o << "Hey, its truthy!"; |
no outgoing calls
no test coverage detected