(value)
| 2212 | |
| 2213 | @R.macro(hygienic=True) |
| 2214 | def add_two(value): |
| 2215 | x = value + R.const(1) # `x` defined in macro |
| 2216 | y = x + R.const(1) |
| 2217 | return y |
| 2218 | |
| 2219 | @R.function(private=True) |
| 2220 | def func(t: R.Tensor((), "int32")): |
no outgoing calls
no test coverage detected
searching dependent graphs…