| 7 | return std::malloc(sz); |
| 8 | } |
| 9 | void operator delete(void* ptr) noexcept |
| 10 | { |
| 11 | std::puts("global op delete called"); |
| 12 | std::free(ptr); |
| 13 | } |
| 14 | int main() { |
| 15 | int* p1 = new int; |
| 16 | delete p1; |
nothing calls this directly
no outgoing calls
no test coverage detected