| 13 | enum MyEnum { EFirstEntry = 1, ESecondEntry }; |
| 14 | |
| 15 | std::string test_function1() { return "test_function()"; } |
| 16 | |
| 17 | std::string test_function2(MyEnum k) { return "test_function(enum=" + std::to_string(k) + ")"; } |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected