| 34 | { |
| 35 | template <typename T, typename U> |
| 36 | _CONSTEXPR11 bool LessThanTest() |
| 37 | { |
| 38 | return |
| 39 | (U)2 < SafeInt<T>(3) && |
| 40 | SafeInt<T>(4) < (U)5 && |
| 41 | SafeInt<T>(6) < SafeInt<U>(7); |
| 42 | } |
| 43 | |
| 44 | template <typename T, typename U> |
| 45 | _CONSTEXPR11 bool GreaterThanTest() |
nothing calls this directly
no outgoing calls
no test coverage detected