| 347 | struct TestObjWithAny : public Object { |
| 348 | Any value; |
| 349 | explicit TestObjWithAny(Any value) : value(std::move(value)) {} |
| 350 | [[maybe_unused]] static constexpr bool _type_mutable = true; |
| 351 | TVM_FFI_DECLARE_OBJECT_INFO_FINAL("test.TestObjWithAny", TestObjWithAny, Object); |
| 352 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected