| 74 | IntPairObj(int64_t a, int64_t b) : a(a), b(b) {} |
| 75 | |
| 76 | int64_t Sum() const { return a + b; } |
| 77 | |
| 78 | static constexpr bool _type_mutable = true; |
| 79 | TVM_FFI_DECLARE_OBJECT_INFO_FINAL( |
nothing calls this directly
no outgoing calls
no test coverage detected