| 1 | int main(int argc, const char* argv[]) |
| 2 | { |
| 3 | if(0 == argc) { return 1; } |
| 4 | |
| 5 | int x = []{ return 2; }(); // a return statement in main that does not return from main |
| 6 | |
| 7 | // implicit return 0 added here |
| 8 | } |
| 9 |
nothing calls this directly
no outgoing calls
no test coverage detected