1 2 3 4 5 6 7 8
use fn_error_context::context; #[context("context")] async fn borrows(x: &mut u32) -> anyhow::Result<&mut u32> { Ok(x) } fn main() {}