(self)
| 170 | ) |
| 171 | |
| 172 | def test_int_sub(self) -> None: |
| 173 | self.assert_emit_binary_op( |
| 174 | "-", self.n, self.m, self.k, "cpy_r_r0 = CPyTagged_Subtract(cpy_r_m, cpy_r_k);" |
| 175 | ) |
| 176 | |
| 177 | def test_int_neg(self) -> None: |
| 178 | assert int_neg_op.c_function_name is not None |
nothing calls this directly
no test coverage detected