| 96 | }; |
| 97 | |
| 98 | class B |
| 99 | { |
| 100 | public: |
| 101 | int operator()(int param) const |
| 102 | { |
| 103 | std::println("Hi, {}", param); |
| 104 | return param + 1; |
| 105 | } |
| 106 | }; |
| 107 | |
| 108 | template<typename T> |
| 109 | void ObjectTest(T &a) |
nothing calls this directly
no outgoing calls
no test coverage detected