| 2 | |
| 3 | template<int... Ints> |
| 4 | constexpr int fold_minus_impl_rf() { |
| 5 | return ( 5 - ... - Ints); |
| 6 | } |
| 7 | |
| 8 | static_assert(fold_minus_impl_rf<0>() == 5); |
| 9 | static_assert(fold_minus_impl_rf<0,1>() == 4); |
nothing calls this directly
no outgoing calls
no test coverage detected