| 137 | } |
| 138 | |
| 139 | static int InitForDeinitError(void** handle_addr) { |
| 140 | *handle_addr = new int(100); |
| 141 | return 0; |
| 142 | } |
| 143 | |
| 144 | static int DeinitWithError(void* h) { |
| 145 | delete static_cast<int*>(h); |
nothing calls this directly
no outgoing calls
no test coverage detected