| 305 | |
| 306 | template <typename T, typename U> |
| 307 | _CONSTEXPR14 T OrOperator() |
| 308 | { |
| 309 | // Have to explicitly force this operator |
| 310 | // to be used |
| 311 | |
| 312 | T lhs = 3; |
| 313 | SafeInt<U> s(1); |
| 314 | |
| 315 | T& r = operator |=(lhs, s); |
| 316 | return r; |
| 317 | } |
| 318 | |
| 319 | template <typename T, typename U> |
| 320 | _CONSTEXPR14 U OrOperator2() |
nothing calls this directly
no outgoing calls
no test coverage detected