| 18 | |
| 19 | template<typename... Args> |
| 20 | std::enable_if_t<are_same_v<Args...>, first_arg_t<Args...>> |
| 21 | Add(const Args&... args) noexcept |
| 22 | { |
| 23 | return (... + args); |
| 24 | } |
| 25 | |
| 26 | #ifdef WILL_NOT_COMPILE |
| 27 | void WillNotCompile() |
no outgoing calls
no test coverage detected