a free function to be used as handler
| 65 | |
| 66 | // a free function to be used as handler |
| 67 | static void foo(std::ostream& out, int x) { out << x << std::endl; } |
| 68 | |
| 69 | // a custom struct to be used as a user-defined parameter type |
| 70 | struct Bar |
nothing calls this directly
no outgoing calls
no test coverage detected