a41cec9f7c
fix: Goto definition for `deref_mut` Fixes #16520a3236be9d7/crates/hir/src/source_analyzer.rs (L375-L393)
As we can see from the above, current implementation routes all dereferencing prefix operations to `Deref::deref` implementation, not regarding mutabilities.a3236be9d7/crates/hir-ty/src/infer/mutability.rs (L134-L151)
Since we are resolving them already in mutability inferences, we can use those results for proper `deref` / `deref_mut` routing.