| 353 | |
| 354 | template <typename T, typename U> |
| 355 | _CONSTEXPR14 bool SafeDivideTest() |
| 356 | { |
| 357 | U u = 2; |
| 358 | T result = 0; |
| 359 | return SafeDivide((T)3, u, result); |
| 360 | } |
| 361 | |
| 362 | template <typename T, typename U> |
| 363 | _CONSTEXPR14 bool SafeAddTest() |
nothing calls this directly
no test coverage detected