| 330 | |
| 331 | template <typename T, typename U> |
| 332 | _CONSTEXPR14 bool SafeCastTest() |
| 333 | { |
| 334 | U to = 0; |
| 335 | return SafeCast((T)3, to); |
| 336 | } |
| 337 | |
| 338 | template <typename T, typename U> |
| 339 | _CONSTEXPR14 bool SafeModulusTest() |
nothing calls this directly
no test coverage detected