| 46 | std::string ABCD("ABCD"); |
| 47 | |
| 48 | struct ExplicitFromIntStruct { |
| 49 | explicit ExplicitFromIntStruct(int x) |
| 50 | : x_(x) |
| 51 | { |
| 52 | } |
| 53 | int x_; |
| 54 | }; |
| 55 | bool operator==(const ExplicitFromIntStruct& lhs, const ExplicitFromIntStruct& rhs) { return lhs.x_ == rhs.x_; } |
| 56 | } |
| 57 |
no outgoing calls
no test coverage detected