| 135 | CppCallable(const CppCallable &) { track_copy_created(this); } |
| 136 | CppCallable(CppCallable &&) noexcept { track_move_created(this); } |
| 137 | void operator()() {} |
| 138 | }; |
| 139 | |
| 140 | m.def("test_cpp_callable_cleanup", []() { |
nothing calls this directly
no outgoing calls
no test coverage detected