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