| 940 | void (C::*m_testAsMethod)(); |
| 941 | public: |
| 942 | TestInvokerAsMethod( void (C::*testAsMethod)() ) noexcept : m_testAsMethod( testAsMethod ) {} |
| 943 | |
| 944 | void invoke() const override { |
| 945 | C obj; |
nothing calls this directly
no outgoing calls
no test coverage detected