(self)
| 610 | assert _match_args(PC) == ("y",) |
| 611 | |
| 612 | def test_c_class_basic(self) -> None: |
| 613 | assert _match_args(tvm_ffi.testing.TestIntPair) == ("a", "b") |
| 614 | |
| 615 | def test_c_class_inheritance_parent_first(self) -> None: |
| 616 | assert _match_args(tvm_ffi.testing._TestCxxClassDerived) == ( |
nothing calls this directly
no test coverage detected