| 2 | const unsigned short FOO = FOO_BASE + 1; |
| 3 | |
| 4 | int main() |
| 5 | { |
| 6 | int x; |
| 7 | |
| 8 | switch(x) { |
| 9 | case FOO: return 1; |
| 10 | } |
| 11 | |
| 12 | switch(int y = 1) { |
| 13 | case FOO: return 1; |
| 14 | } |
| 15 | |
| 16 | switch(int y = 1; y++) { |
| 17 | case FOO: return 1; |
| 18 | } |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected