(x: Any)
| 164 | def test_global_func() -> None: |
| 165 | @tvm_ffi.register_global_func("mytest.echo") |
| 166 | def echo(x: Any) -> Any: |
| 167 | return x |
| 168 | |
| 169 | f = tvm_ffi.get_global_func("mytest.echo") |
| 170 | assert f.same_as(echo) |
no outgoing calls
no test coverage detected