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

Function main

tests/SingleLineLoopsTest.cpp:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1void Foo() {}
2
3int main()
4{
5 for(int i = 0; i < 2; ++i) Foo();
6
7 int i=0;
8 while( ++i < 5 ) Foo();
9
10 do Foo(); while( ++i < 5 );
11}

Callers

nothing calls this directly

Calls 1

FooFunction · 0.70

Tested by

no test coverage detected