| 1 | int main() |
| 2 | { |
| 3 | for(int i=0; i < 2; ++i); |
| 4 | |
| 5 | for(int i=0; i < 2; ++i) { |
| 6 | |
| 7 | } |
| 8 | |
| 9 | for(int i{0}; i < 2; i++); |
| 10 | |
| 11 | int x; |
| 12 | for( x=0; x < 2; ++x){} |
| 13 | |
| 14 | for(; x < 4; ++x){} |
| 15 | |
| 16 | for(;; ++x) {} |
| 17 | |
| 18 | for( ;; ) {} |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected