| 4 | |
| 5 | |
| 6 | int main() |
| 7 | { |
| 8 | char arr[10]{2,4,6,8,10,12,14,16,18,20}; |
| 9 | |
| 10 | for(char c : arr) |
| 11 | ; |
| 12 | |
| 13 | std::vector<int> v{1, 2, 3, 5}; |
| 14 | |
| 15 | for(auto& vv : v) |
| 16 | ; |
| 17 | |
| 18 | for(auto& vv : v); |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected