| 243 | |
| 244 | template <typename T, typename U> |
| 245 | _CONSTEXPR14 U RShiftOperator2() |
| 246 | { |
| 247 | // Have to explicitly force this operator |
| 248 | // to be used |
| 249 | U lhs = 3; |
| 250 | SafeInt<T> s(1); |
| 251 | |
| 252 | SafeInt<U> r = operator >>(lhs, s); |
| 253 | return r; |
| 254 | } |
| 255 | |
| 256 | template <typename T, typename U> |
| 257 | _CONSTEXPR14 T AndOperator() |
nothing calls this directly
no outgoing calls
no test coverage detected