(self, backend_obj: Any)
| 193 | def test_object_protocol() -> None: |
| 194 | class CompactObject: |
| 195 | def __init__(self, backend_obj: Any) -> None: |
| 196 | self.backend_obj = backend_obj |
| 197 | |
| 198 | def __tvm_ffi_object__(self) -> Any: |
| 199 | return self.backend_obj |
nothing calls this directly
no outgoing calls
no test coverage detected