| 239 | explicit DummyOpaqueObject(int value) : value(value) {} |
| 240 | |
| 241 | static void Deleter(void* handle) { |
| 242 | deleter_trigger_counter++; |
| 243 | delete static_cast<DummyOpaqueObject*>(handle); |
| 244 | } |
| 245 | }; |
| 246 | TVMFFIObjectHandle handle = nullptr; |
| 247 | TVM_FFI_CHECK_SAFE_CALL(TVMFFIObjectCreateOpaque(new DummyOpaqueObject(10), kTVMFFIOpaquePyObject, |
nothing calls this directly
no outgoing calls
no test coverage detected