| 81 | |
| 82 | template <typename T, typename U> |
| 83 | _CONSTEXPR11 bool NotEqualTest() |
| 84 | { |
| 85 | return |
| 86 | (U)2 != SafeInt<T>(3) && |
| 87 | SafeInt<T>(4) != (U)5 && |
| 88 | SafeInt<T>(6) != SafeInt<U>(7) && |
| 89 | true != SafeInt<T>(1) && |
| 90 | false != SafeInt<T>(0); |
| 91 | } |
| 92 | |
| 93 | template <typename T, typename U> |
| 94 | void ComparisonTestTU() |
nothing calls this directly
no outgoing calls
no test coverage detected