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

Class Alloc

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

Source from the content-addressed store, hash-verified

1// cmdlineinsights:-edu-show-cfront
2
3class Alloc
4{
5 int* data;
6
7public:
8 Alloc() { data = new int[10]{1, 2, 3}; }
9
10 ~Alloc() { delete[] data; }
11};
12
13int main()
14{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected