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

Function main

tests/EduCfrontVtable2Test.cpp:28–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26};
27
28int main()
29{
30 C c;
31
32 c.w();
33 c.v();
34
35 B* b = &c;
36 b->w();
37
38 C* cb = (C*)(b);
39 cb->v();
40
41 //
42 D d;
43 B* bd = &d;
44 D* db = (D*)bd;
45 db->w();
46}
47

Callers

nothing calls this directly

Calls 2

wMethod · 0.45
vMethod · 0.45

Tested by

no test coverage detected