| 428 | // big functor |
| 429 | { |
| 430 | struct functor { |
| 431 | testing_stub stub; |
| 432 | char padding[1024] = {}; |
| 433 | |
| 434 | functor(testing_stub stub) noexcept : stub(std::move(stub)) {} |
| 435 | |
| 436 | void operator()() {} |
| 437 | }; |
| 438 | |
| 439 | object_observer observer; |
| 440 |
nothing calls this directly
no outgoing calls
no test coverage detected