(x: R.Tensor((3, 3), dtype="float32"))
| 1782 | |
| 1783 | @R.function |
| 1784 | def mul(x: R.Tensor((3, 3), dtype="float32")): |
| 1785 | res = R.multiply(x, x) |
| 1786 | return res |
| 1787 | |
| 1788 | _check(Foo) |
| 1789 | # Since the return type of function `mul` is not annotated, |
no test coverage detected