| 218 | |
| 219 | template <typename T, typename U> |
| 220 | _CONSTEXPR14 U LShiftOperator2() |
| 221 | { |
| 222 | // Have to explicitly force this operator |
| 223 | // to be used |
| 224 | U lhs = 3; |
| 225 | SafeInt<T> s(2); |
| 226 | |
| 227 | SafeInt<U> r = operator <<(lhs, s); |
| 228 | return r; |
| 229 | } |
| 230 | |
| 231 | template <typename T, typename U> |
| 232 | _CONSTEXPR14 T RShiftOperator() |
nothing calls this directly
no outgoing calls
no test coverage detected