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

Function main

tests/EduCfrontTest13.cpp:32–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30};
31
32int main()
33{
34 A avec[4];
35
36 A* a = new A[2];
37
38 // C cvec[3]{2,3,4};
39
40 C* c = new C[2]{{2}, {3}};
41
42 C* c2 = new C{3};
43
44 D dvec[5];
45
46 E e;
47
48 E* ep = new E;
49
50 delete[] a;
51 delete[] c;
52 delete c2;
53 delete ep;
54}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected