(x: R.Tuple(R.Tensor(("m", "n"))))
| 274 | class Before: |
| 275 | @R.function |
| 276 | def main(x: R.Tuple(R.Tensor(("m", "n")))): |
| 277 | y = x |
| 278 | o, p = T.int64(), T.int64() |
| 279 | z = R.match_cast(x, R.Tuple(R.Tensor((o, p)))) |
| 280 | w = z |
| 281 | q = R.add(w[0], y[0]) |
| 282 | return R.add(q, w[0]) |
| 283 | |
| 284 | @I.ir_module |
| 285 | class Expected: |
nothing calls this directly
no test coverage detected