| 1 | // cmdlineinsights:-edu-show-cfront |
| 2 | |
| 3 | int main() |
| 4 | { |
| 5 | int* i = new int; |
| 6 | long double* d = new long double(22.4); |
| 7 | double* db = new double{22.4}; |
| 8 | |
| 9 | delete i; |
| 10 | delete db; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected