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

Function main

tests/EduCfrontOverloadTest.cpp:16–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14void Bun(int) {}
15
16int main()
17{
18 int* p{};
19 const int* cp{};
20
21 Fun(2);
22 Fun(3.14);
23 Fun(p);
24 Fun(cp);
25
26 int r{};
27 Fun(r);
28
29 unsigned ur{};
30 Fun(ur);
31
32 Run(4);
33
34 int i{};
35 Run(i);
36
37 Bun(4);
38}

Callers

nothing calls this directly

Calls 3

RunFunction · 0.85
BunFunction · 0.85
FunFunction · 0.70

Tested by

no test coverage detected