| 19 | std::string test_function3(int i) { return "test_function(" + std::to_string(i) + ")"; } |
| 20 | |
| 21 | py::str test_function4() { return "test_function()"; } |
| 22 | py::str test_function4(char *) { return "test_function(char *)"; } |
| 23 | py::str test_function4(int, float) { return "test_function(int, float)"; } |
| 24 | py::str test_function4(float, int) { return "test_function(float, int)"; } |
nothing calls this directly
no outgoing calls
no test coverage detected