| 4 | #include <cstdio> |
| 5 | |
| 6 | int main(int value, const char*[]) |
| 7 | { |
| 8 | switch(value) { |
| 9 | case 0: puts("Hello"); break; |
| 10 | [[likely]] case 1: puts("World"); break; |
| 11 | case 2: puts("C++"); break; |
| 12 | } |
| 13 | |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected