| 33 | int testInt(int x) { return(x); } |
| 34 | bool testBool(bool x) { return(x); } |
| 35 | std::string testString(std::string x) { return(x); } |
| 36 | const char *testCString(const char *x) { return(x); } |
| 37 | |
| 38 | int strictInt(int x) { return(x); } |
nothing calls this directly
no outgoing calls
no test coverage detected