| 486 | void (C::*m_testAsMethod)(); |
| 487 | public: |
| 488 | TestInvokerAsMethod( void (C::*testAsMethod)() ) noexcept : m_testAsMethod( testAsMethod ) {} |
| 489 | |
| 490 | void invoke() const override { |
| 491 | C obj; |
nothing calls this directly
no outgoing calls
no test coverage detected