(self)
| 42 | assert compute_rtype_alignment(b) == 1 |
| 43 | |
| 44 | def test_size(self) -> None: |
| 45 | a = RArray(int_rprimitive, 9) |
| 46 | assert compute_rtype_size(a) == 9 * PLATFORM_SIZE |
| 47 | b = RArray(bool_rprimitive, 3) |
| 48 | assert compute_rtype_size(b) == 3 |
nothing calls this directly
no test coverage detected