| 60 | } |
| 61 | |
| 62 | static int InitForDeinitError(void** handle_addr) { |
| 63 | *handle_addr = new int(100); |
| 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | static int DeinitWithError(void* h) { |
| 68 | delete static_cast<int*>(h); |
nothing calls this directly
no outgoing calls
no test coverage detected