| 306 | namespace overloading { |
| 307 | template <typename... Args> |
| 308 | struct overload_impl; |
| 309 | template <typename Current, typename Next, typename... Rest> |
| 310 | struct overload_impl<Current, Next, Rest...> : Current, |
| 311 | overload_impl<Next, Rest...> { |
nothing calls this directly
no outgoing calls
no test coverage detected