| 52 | bool operator>(const Test& rhs) { return mX > rhs.mX; } |
| 53 | |
| 54 | bool operator>=(const Test& rhs) { return mX >= rhs.mX; } |
| 55 | |
| 56 | Test& operator[](const int index) { return *this; }; |
| 57 |
nothing calls this directly
no outgoing calls
no test coverage detected