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

Function main

tests/EduCfrontTest14.cpp:17–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15};
16
17int main()
18{
19 A* a = new A[3]{};
20
21 delete[] a;
22
23 int* i = new int[3]{2, 3};
24
25 int* x = new int{2};
26
27 B b1{};
28
29 B b2{static_cast<B&&>(b1)};
30}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected