| 88 | |
| 89 | def test_array_map_of_opaque_object() -> None: |
| 90 | class MyObject: |
| 91 | def __init__(self, value: Any) -> None: |
| 92 | self.value = value |
| 93 | |
| 94 | a = tvm_ffi.convert([MyObject("hello"), MyObject(1)]) |
| 95 | assert isinstance(a, tvm_ffi.Array) |
no outgoing calls