()
| 5 | const RHS: i32 = 3; |
| 6 | |
| 7 | fn main() -> Result<()> { |
| 8 | run_passed_funcref_example()?; |
| 9 | run_returned_funcref_example()?; |
| 10 | Ok(()) |
| 11 | } |
| 12 | |
| 13 | fn run_passed_funcref_example() -> Result<()> { |
| 14 | // Host receives funcref and calls it via an exported proxy. |
nothing calls this directly
no test coverage detected