| 661 | struct CallVia { |
| 662 | template <typename Self, typename... Args> |
| 663 | static auto Run(Self&& self, Args&&... args) { |
| 664 | return (std::forward<Self>(self).*Method)(std::forward<Args>(args)...); |
| 665 | } |
| 666 | }; |
| 667 | |
| 668 | } // namespace overload_cast_test |
nothing calls this directly
no outgoing calls
no test coverage detected