MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / main

Function main

tests/RangeForStmtHandler2Test.cpp:6–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5
6int 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected