| 2 | using namespace std; |
| 3 | |
| 4 | int foo(const char * p) |
| 5 | { |
| 6 | // the value that p points to cannot be changed |
| 7 | // play a trick? |
| 8 | char * p2 = p; //syntax error |
| 9 | //... |
| 10 | return 0; |
| 11 | } |
| 12 | |
| 13 | int main() |
| 14 | { |
nothing calls this directly
no outgoing calls
no test coverage detected