| 343 | class NoPlacementNew { |
| 344 | public: |
| 345 | explicit NoPlacementNew(int i) : i(i) {} |
| 346 | static void *operator new(std::size_t s) { |
| 347 | auto *p = ::operator new(s); |
| 348 | py::print("operator new called, returning", reinterpret_cast<uintptr_t>(p)); |
no outgoing calls
no test coverage detected