Skip to main content

rustc_borrowck/diagnostics/
mutability_errors.rs

1use core::ops::ControlFlow;
2
3use either::Either;
4use hir::{ExprKind, Param};
5use rustc_abi::FieldIdx;
6use rustc_errors::{Applicability, Diag};
7use rustc_hir::attrs::lang_items::LangItem;
8use rustc_hir::def_id::DefId;
9use rustc_hir::intravisit::Visitor;
10use rustc_hir::{self as hir, BindingMode, ByRef, Expr, Node};
11use rustc_middle::hir::place::PlaceBase;
12use rustc_middle::mir::visit::PlaceContext;
13use rustc_middle::mir::{
14    self, BindingForm, Body, BorrowKind, Local, LocalDecl, LocalInfo, LocalKind, Location,
15    Mutability, Operand, Place, PlaceRef, ProjectionElem, RawPtrKind, Rvalue, Statement,
16    StatementKind, TerminatorKind,
17};
18use rustc_middle::ty::{self, InstanceKind, Ty, TyCtxt, Upcast};
19use rustc_span::{BytePos, DesugaringKind, Span, Symbol, bug, kw, sym};
20use rustc_trait_selection::error_reporting::InferCtxtErrorExt;
21use rustc_trait_selection::infer::InferCtxtExt;
22use rustc_trait_selection::traits;
23use tracing::{debug, trace};
24
25use crate::diagnostics::BorrowedContentSource;
26use crate::{MirBorrowckCtxt, session_diagnostics};
27
28#[derive(#[automatically_derived]
impl ::core::marker::Copy for AccessKind { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AccessKind { }
#[automatically_derived]
impl ::core::clone::Clone for AccessKind {
    #[inline]
    fn clone(&self) -> AccessKind { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for AccessKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                AccessKind::MutableBorrow => "MutableBorrow",
                AccessKind::Mutate => "Mutate",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::Eq for AccessKind { }Eq, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for AccessKind { }
#[automatically_derived]
impl ::core::cmp::PartialEq for AccessKind {
    #[inline]
    fn eq(&self, other: &AccessKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq)]
29pub(crate) enum AccessKind {
30    MutableBorrow,
31    Mutate,
32}
33
34/// Finds all statements that assign directly to local (i.e., X = ...) and returns their
35/// locations.
36fn find_assignments(body: &Body<'_>, local: Local) -> Vec<Location> {
37    use rustc_middle::mir::visit::Visitor;
38
39    struct FindLocalAssignmentVisitor {
40        needle: Local,
41        locations: Vec<Location>,
42    }
43
44    impl<'tcx> Visitor<'tcx> for FindLocalAssignmentVisitor {
45        fn visit_local(&mut self, local: Local, place_context: PlaceContext, location: Location) {
46            if self.needle != local {
47                return;
48            }
49
50            if place_context.is_place_assignment() {
51                self.locations.push(location);
52            }
53        }
54    }
55
56    let mut visitor = FindLocalAssignmentVisitor { needle: local, locations: ::alloc::vec::Vec::new()vec![] };
57    visitor.visit_body(body);
58    visitor.locations
59}
60
61impl<'tcx> MirBorrowckCtxt<'_, '_, 'tcx> {
62    pub(crate) fn report_mutability_error(
63        &mut self,
64        access_place: Place<'tcx>,
65        span: Span,
66        the_place_err: PlaceRef<'tcx>,
67        error_access: AccessKind,
68        location: Location,
69    ) {
70        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs:70",
                        "rustc_borrowck::diagnostics::mutability_errors",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs"),
                        ::tracing_core::__macro_support::Option::Some(70u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_borrowck::diagnostics::mutability_errors"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("report_mutability_error(access_place={0:?}, span={1:?}, the_place_err={2:?}, error_access={3:?}, location={4:?},)",
                                                    access_place, span, the_place_err, error_access, location)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
71            "report_mutability_error(\
72                access_place={:?}, span={:?}, the_place_err={:?}, error_access={:?}, location={:?},\
73            )",
74            access_place, span, the_place_err, error_access, location,
75        );
76
77        let mut err;
78        let item_msg;
79        let reason;
80        let mut opt_source = None;
81        let access_place_desc = self.describe_any_place(access_place.as_ref());
82        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs:82",
                        "rustc_borrowck::diagnostics::mutability_errors",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs"),
                        ::tracing_core::__macro_support::Option::Some(82u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_borrowck::diagnostics::mutability_errors"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("report_mutability_error: access_place_desc={0:?}",
                                                    access_place_desc) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("report_mutability_error: access_place_desc={:?}", access_place_desc);
83
84        match the_place_err {
85            PlaceRef { local, projection: [] } => {
86                item_msg = access_place_desc;
87                if access_place.as_local().is_some() {
88                    reason = ", as it is not declared as mutable".to_string();
89                } else {
90                    let name = self.local_name(local).expect("immutable unnamed local");
91                    reason = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(", as `{0}` is not declared as mutable",
                name))
    })format!(", as `{name}` is not declared as mutable");
92                }
93            }
94
95            PlaceRef {
96                local,
97                projection: [proj_base @ .., ProjectionElem::Field(upvar_index, _)],
98            } => {
99                if true {
    if !is_closure_like(Place::ty_from(local, proj_base, self.body,
                        self.infcx.tcx).ty) {
        ::core::panicking::panic("assertion failed: is_closure_like(Place::ty_from(local, proj_base, self.body,\n            self.infcx.tcx).ty)")
    };
};debug_assert!(is_closure_like(
100                    Place::ty_from(local, proj_base, self.body, self.infcx.tcx).ty
101                ));
102
103                let imm_borrow_derefed = self.upvars[upvar_index.index()]
104                    .place
105                    .deref_tys()
106                    .any(|ty| #[allow(non_exhaustive_omitted_patterns)] match ty.kind() {
    ty::Ref(.., hir::Mutability::Not) => true,
    _ => false,
}matches!(ty.kind(), ty::Ref(.., hir::Mutability::Not)));
107
108                // If the place is immutable then:
109                //
110                // - Either we deref an immutable ref to get to our final place.
111                //    - We don't capture derefs of raw ptrs
112                // - Or the final place is immut because the root variable of the capture
113                //   isn't marked mut and we should suggest that to the user.
114                if imm_borrow_derefed {
115                    // If we deref an immutable ref then the suggestion here doesn't help.
116                    return;
117                } else {
118                    item_msg = access_place_desc;
119                    if self.is_upvar_field_projection(access_place.as_ref()).is_some() {
120                        reason = ", as it is not declared as mutable".to_string();
121                    } else {
122                        let name = self.upvars[upvar_index.index()].to_string(self.infcx.tcx);
123                        reason = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(", as `{0}` is not declared as mutable",
                name))
    })format!(", as `{name}` is not declared as mutable");
124                    }
125                }
126            }
127
128            PlaceRef { local, projection: [ProjectionElem::Deref] }
129                if self.body.local_decls[local].is_ref_for_guard() =>
130            {
131                item_msg = access_place_desc;
132                reason = ", as it is immutable for the pattern guard".to_string();
133            }
134            PlaceRef { local, projection: [ProjectionElem::Deref] }
135                if self.body.local_decls[local].is_ref_to_static() =>
136            {
137                if access_place.projection.len() == 1 {
138                    item_msg = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("immutable static item {0}",
                access_place_desc))
    })format!("immutable static item {access_place_desc}");
139                    reason = String::new();
140                } else {
141                    item_msg = access_place_desc;
142                    let local_info = self.body.local_decls[local].local_info();
143                    let LocalInfo::StaticRef { def_id, .. } = *local_info else {
144                        bug_impl(None,
    format_args!("is_ref_to_static return true, but not ref to static?"),
    Location::caller());bug!("is_ref_to_static return true, but not ref to static?");
145                    };
146                    let static_name = &self.infcx.tcx.item_name(def_id);
147                    reason = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(", as `{0}` is an immutable static item",
                static_name))
    })format!(", as `{static_name}` is an immutable static item");
148                }
149            }
150            PlaceRef { local, projection: [proj_base @ .., ProjectionElem::Deref] } => {
151                if local == ty::CAPTURE_STRUCT_LOCAL
152                    && proj_base.is_empty()
153                    && !self.upvars.is_empty()
154                {
155                    item_msg = access_place_desc;
156                    if true {
    if !self.body.local_decls[ty::CAPTURE_STRUCT_LOCAL].ty.is_ref() {
        ::core::panicking::panic("assertion failed: self.body.local_decls[ty::CAPTURE_STRUCT_LOCAL].ty.is_ref()")
    };
};debug_assert!(self.body.local_decls[ty::CAPTURE_STRUCT_LOCAL].ty.is_ref());
157                    if true {
    if !is_closure_like(the_place_err.ty(self.body, self.infcx.tcx).ty) {
        ::core::panicking::panic("assertion failed: is_closure_like(the_place_err.ty(self.body, self.infcx.tcx).ty)")
    };
};debug_assert!(is_closure_like(the_place_err.ty(self.body, self.infcx.tcx).ty));
158
159                    reason = if self.is_upvar_field_projection(access_place.as_ref()).is_some() {
160                        ", as it is a captured variable in a `Fn` closure".to_string()
161                    } else {
162                        ", as `Fn` closures cannot mutate their captured variables".to_string()
163                    }
164                } else {
165                    let source =
166                        self.borrowed_content_source(PlaceRef { local, projection: proj_base });
167                    let pointer_type = source.describe_for_immutable_place(self.infcx.tcx);
168                    opt_source = Some(source);
169                    if let Some(desc) = self.describe_place(access_place.as_ref()) {
170                        item_msg = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("`{0}`", desc))
    })format!("`{desc}`");
171                        reason = match error_access {
172                            AccessKind::Mutate => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(", which is behind {0}",
                pointer_type))
    })format!(", which is behind {pointer_type}"),
173                            AccessKind::MutableBorrow => {
174                                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(", as it is behind {0}",
                pointer_type))
    })format!(", as it is behind {pointer_type}")
175                            }
176                        }
177                    } else {
178                        item_msg = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("data in {0}", pointer_type))
    })format!("data in {pointer_type}");
179                        reason = String::new();
180                    }
181                }
182            }
183
184            PlaceRef { local: _, projection: [ProjectionElem::PhantomDeref] } => {
185                item_msg = String::new();
186                reason = String::new();
187            }
188            PlaceRef { local: _, projection: [_proj_base @ .., ProjectionElem::PhantomDeref] } => {
189                item_msg = String::new();
190                reason = String::new();
191            }
192
193            PlaceRef {
194                local: _,
195                projection:
196                    [
197                        ..,
198                        ProjectionElem::Index(_)
199                        | ProjectionElem::ConstantIndex { .. }
200                        | ProjectionElem::OpaqueCast { .. }
201                        | ProjectionElem::Subslice { .. }
202                        | ProjectionElem::Downcast(..)
203                        | ProjectionElem::UnwrapUnsafeBinder(_),
204                    ],
205            } => bug_impl(None, format_args!("Unexpected immutable place."),
    Location::caller())bug!("Unexpected immutable place."),
206        }
207
208        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs:208",
                        "rustc_borrowck::diagnostics::mutability_errors",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs"),
                        ::tracing_core::__macro_support::Option::Some(208u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_borrowck::diagnostics::mutability_errors"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("report_mutability_error: item_msg={0:?}, reason={1:?}",
                                                    item_msg, reason) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("report_mutability_error: item_msg={:?}, reason={:?}", item_msg, reason);
209
210        // `act` and `acted_on` are strings that let us abstract over
211        // the verbs used in some diagnostic messages.
212        let act;
213        let acted_on;
214        let mut suggest = true;
215        let mut mut_error = None;
216        let mut count = 1;
217
218        let span = match error_access {
219            AccessKind::Mutate => {
220                err = self.cannot_assign(span, &(item_msg + &reason));
221                act = "assign";
222                acted_on = "written to";
223                span
224            }
225            AccessKind::MutableBorrow => {
226                act = "borrow as mutable";
227                acted_on = "borrowed as mutable";
228
229                let borrow_spans = self.borrow_spans(span, location);
230                let borrow_span = borrow_spans.args_or_use();
231                match the_place_err {
232                    PlaceRef { local, projection: [] }
233                        if self.body.local_decls[local].can_be_made_mutable() =>
234                    {
235                        let span = self.body.local_decls[local].source_info.span;
236                        mut_error = Some(span);
237                        if let Some((buffered_err, c)) = self.get_buffered_mut_error(span) {
238                            // We've encountered a second (or more) attempt to mutably borrow an
239                            // immutable binding, so the likely problem is with the binding
240                            // declaration, not the use. We collect these in a single diagnostic
241                            // and make the binding the primary span of the error.
242                            err = buffered_err;
243                            count = c + 1;
244                            if count == 2 {
245                                err.replace_span_with(span, false);
246                                err.span_label(span, "not mutable");
247                            }
248                            suggest = false;
249                        } else {
250                            err = self.cannot_borrow_path_as_mutable_because(
251                                borrow_span,
252                                &item_msg,
253                                &reason,
254                            );
255                        }
256                    }
257                    _ => {
258                        err = self.cannot_borrow_path_as_mutable_because(
259                            borrow_span,
260                            &item_msg,
261                            &reason,
262                        );
263                    }
264                }
265                if suggest {
266                    borrow_spans.var_subdiag(
267                        &mut err,
268                        Some(mir::BorrowKind::Mut { kind: mir::MutBorrowKind::Default }),
269                        |_kind, var_span| {
270                            let place = self.describe_any_place(access_place.as_ref());
271                            session_diagnostics::CaptureVarCause::MutableBorrowUsePlaceClosure {
272                                place,
273                                var_span,
274                            }
275                        },
276                    );
277                }
278                borrow_span
279            }
280        };
281
282        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs:282",
                        "rustc_borrowck::diagnostics::mutability_errors",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs"),
                        ::tracing_core::__macro_support::Option::Some(282u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_borrowck::diagnostics::mutability_errors"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("report_mutability_error: act={0:?}, acted_on={1:?}",
                                                    act, acted_on) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("report_mutability_error: act={:?}, acted_on={:?}", act, acted_on);
283
284        match the_place_err {
285            // Suggest making an existing shared borrow in a struct definition a mutable borrow.
286            //
287            // This is applicable when we have a deref of a field access to a deref of a local -
288            // something like `*((*_1).0`. The local that we get will be a reference to the
289            // struct we've got a field access of (it must be a reference since there's a deref
290            // after the field access).
291            PlaceRef {
292                local,
293                projection:
294                    [
295                        proj_base @ ..,
296                        ProjectionElem::Deref,
297                        ProjectionElem::Field(field, _),
298                        ProjectionElem::Deref,
299                    ],
300            } => {
301                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("cannot {0}", act))
    })format!("cannot {act}"));
302
303                let place = Place::ty_from(local, proj_base, self.body, self.infcx.tcx);
304                if let Some(span) = get_mut_span_in_struct_field(self.infcx.tcx, place.ty, *field) {
305                    err.span_suggestion_verbose(
306                        span,
307                        "consider changing this to be mutable",
308                        " mut ",
309                        Applicability::MaybeIncorrect,
310                    );
311                }
312            }
313
314            // Suggest removing a `&mut` from the use of a mutable reference.
315            PlaceRef { local, projection: [] }
316                if self
317                    .body
318                    .local_decls
319                    .get(local)
320                    .is_some_and(|l| mut_borrow_of_mutable_ref(l, self.local_name(local))) =>
321            {
322                let decl = &self.body.local_decls[local];
323                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("cannot {0}", act))
    })format!("cannot {act}"));
324                if let Some(mir::Statement {
325                    source_info,
326                    kind:
327                        mir::StatementKind::Assign((
328                            _,
329                            mir::Rvalue::Ref(
330                                _,
331                                mir::BorrowKind::Mut { kind: mir::MutBorrowKind::Default },
332                                _,
333                            ),
334                        )),
335                    ..
336                }) = &self.body[location.block].statements.get(location.statement_index)
337                {
338                    match *decl.local_info() {
339                        LocalInfo::User(BindingForm::Var(mir::VarBindingForm {
340                            binding_mode: BindingMode(ByRef::No, Mutability::Not),
341                            opt_ty_info: Some(sp),
342                            pat_span,
343                            ..
344                        })) => {
345                            if suggest {
346                                err.span_note(sp, "the binding is already a mutable borrow");
347                                err.span_suggestion_verbose(
348                                    pat_span.shrink_to_lo(),
349                                    "consider making the binding mutable if you need to reborrow \
350                                     multiple times",
351                                    "mut ".to_string(),
352                                    Applicability::MaybeIncorrect,
353                                );
354                            }
355                        }
356                        _ => {
357                            err.span_note(
358                                decl.source_info.span,
359                                "the binding is already a mutable borrow",
360                            );
361                        }
362                    }
363                    if let Ok(snippet) =
364                        self.infcx.tcx.sess.source_map().span_to_snippet(source_info.span)
365                    {
366                        if snippet.starts_with("&mut ") {
367                            // In calls, `&mut &mut T` may be deref-coerced to `&mut T`, and
368                            // removing the extra `&mut` is the most direct suggestion. But for
369                            // pattern-matching expressions (`match`, `if let`, `while let`), that
370                            // can easily turn into a move, so prefer suggesting an explicit
371                            // reborrow via `&mut *x` instead.
372                            let mut in_pat_scrutinee = false;
373                            let mut is_deref_coerced = false;
374                            if let Some(expr) = self.find_expr(source_info.span) {
375                                let tcx = self.infcx.tcx;
376                                let span = expr.span.source_callsite();
377                                for (_, node) in tcx.hir_parent_iter(expr.hir_id) {
378                                    if let Node::Expr(parent_expr) = node {
379                                        match parent_expr.kind {
380                                            ExprKind::Match(scrutinee, ..)
381                                                if scrutinee
382                                                    .span
383                                                    .source_callsite()
384                                                    .contains(span) =>
385                                            {
386                                                in_pat_scrutinee = true;
387                                                break;
388                                            }
389                                            ExprKind::Let(let_expr)
390                                                if let_expr
391                                                    .init
392                                                    .span
393                                                    .source_callsite()
394                                                    .contains(span) =>
395                                            {
396                                                in_pat_scrutinee = true;
397                                                break;
398                                            }
399                                            _ => {}
400                                        }
401                                    }
402                                }
403
404                                let typeck = tcx.typeck(expr.hir_id.owner.def_id);
405                                is_deref_coerced =
406                                    typeck.expr_adjustments(expr).iter().any(|adj| {
407                                        #[allow(non_exhaustive_omitted_patterns)] match adj.kind {
    ty::adjustment::Adjust::Deref(_) => true,
    _ => false,
}matches!(adj.kind, ty::adjustment::Adjust::Deref(_))
408                                    });
409                            }
410
411                            if in_pat_scrutinee {
412                                // Best-effort structured suggestion: insert `*` after `&mut `.
413                                err.span_suggestion_verbose(
414                                    source_info
415                                        .span
416                                        .with_lo(source_info.span.lo() + BytePos(5))
417                                        .shrink_to_lo(),
418                                    "to reborrow the mutable reference, add `*`",
419                                    "*",
420                                    Applicability::MaybeIncorrect,
421                                );
422                            } else if is_deref_coerced {
423                                // We don't have access to the HIR to get accurate spans, but we
424                                // can give a best effort structured suggestion.
425                                err.span_suggestion_verbose(
426                                    source_info.span.with_hi(source_info.span.lo() + BytePos(5)),
427                                    "if there is only one mutable reborrow, remove the `&mut`",
428                                    "",
429                                    Applicability::MaybeIncorrect,
430                                );
431                            }
432                        } else {
433                            // This can occur with things like `(&mut self).foo()`.
434                            err.span_help(source_info.span, "try removing `&mut` here");
435                        }
436                    } else {
437                        err.span_help(source_info.span, "try removing `&mut` here");
438                    }
439                } else if decl.mutability.is_not() {
440                    if #[allow(non_exhaustive_omitted_patterns)] match decl.local_info() {
    LocalInfo::User(BindingForm::ImplicitSelf(hir::ImplicitSelfKind::RefMut))
        => true,
    _ => false,
}matches!(
441                        decl.local_info(),
442                        LocalInfo::User(BindingForm::ImplicitSelf(hir::ImplicitSelfKind::RefMut))
443                    ) {
444                        err.note(
445                            "as `Self` may be unsized, this call attempts to take `&mut &mut self`",
446                        );
447                        err.note("however, `&mut self` expands to `self: &mut Self`, therefore `self` cannot be borrowed mutably");
448                    } else {
449                        err.span_suggestion_verbose(
450                            decl.source_info.span.shrink_to_lo(),
451                            "consider making the binding mutable",
452                            "mut ",
453                            Applicability::MachineApplicable,
454                        );
455                    };
456                }
457            }
458
459            // We want to suggest users use `let mut` for local (user
460            // variable) mutations...
461            PlaceRef { local, projection: [] }
462                if self.body.local_decls[local].can_be_made_mutable() =>
463            {
464                // ... but it doesn't make sense to suggest it on
465                // variables that are `ref x`, `ref mut x`, `&self`,
466                // or `&mut self` (such variables are simply not
467                // mutable).
468                let local_decl = &self.body.local_decls[local];
469                {
    match (&local_decl.mutability, &Mutability::Not) {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    }
};assert_eq!(local_decl.mutability, Mutability::Not);
470
471                if count < 10 {
472                    err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("cannot {0}", act))
    })format!("cannot {act}"));
473                }
474                if suggest {
475                    self.construct_mut_suggestion_for_local_binding_patterns(&mut err, local);
476                    let tcx = self.infcx.tcx;
477                    if let ty::Closure(id, _) = *the_place_err.ty(self.body, tcx).ty.kind() {
478                        self.show_mutating_upvar(tcx, id.expect_local(), the_place_err, &mut err);
479                    }
480                }
481            }
482
483            // Also suggest adding mut for upvars.
484            PlaceRef {
485                local,
486                projection: [proj_base @ .., ProjectionElem::Field(upvar_index, _)],
487            } => {
488                if true {
    if !is_closure_like(Place::ty_from(local, proj_base, self.body,
                        self.infcx.tcx).ty) {
        ::core::panicking::panic("assertion failed: is_closure_like(Place::ty_from(local, proj_base, self.body,\n            self.infcx.tcx).ty)")
    };
};debug_assert!(is_closure_like(
489                    Place::ty_from(local, proj_base, self.body, self.infcx.tcx).ty
490                ));
491
492                let captured_place = self.upvars[upvar_index.index()];
493
494                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("cannot {0}", act))
    })format!("cannot {act}"));
495
496                let upvar_hir_id = captured_place.get_root_variable();
497
498                if let Node::Pat(pat) = self.infcx.tcx.hir_node(upvar_hir_id)
499                    && let hir::PatKind::Binding(hir::BindingMode::NONE, _, upvar_ident, _) =
500                        pat.kind
501                {
502                    if upvar_ident.name == kw::SelfLower {
503                        for (_, node) in self.infcx.tcx.hir_parent_iter(upvar_hir_id) {
504                            if let Some(fn_decl) = node.fn_decl() {
505                                if !#[allow(non_exhaustive_omitted_patterns)] match fn_decl.implicit_self() {
    hir::ImplicitSelfKind::RefImm | hir::ImplicitSelfKind::RefMut => true,
    _ => false,
}matches!(
506                                    fn_decl.implicit_self(),
507                                    hir::ImplicitSelfKind::RefImm | hir::ImplicitSelfKind::RefMut
508                                ) {
509                                    err.span_suggestion_verbose(
510                                        upvar_ident.span.shrink_to_lo(),
511                                        "consider changing this to be mutable",
512                                        "mut ",
513                                        Applicability::MachineApplicable,
514                                    );
515                                    break;
516                                }
517                            }
518                        }
519                    } else {
520                        err.span_suggestion_verbose(
521                            upvar_ident.span.shrink_to_lo(),
522                            "consider changing this to be mutable",
523                            "mut ",
524                            Applicability::MachineApplicable,
525                        );
526                    }
527                }
528
529                let tcx = self.infcx.tcx;
530                if let ty::Ref(_, ty, Mutability::Mut) = the_place_err.ty(self.body, tcx).ty.kind()
531                    && let ty::Closure(id, _) = *ty.kind()
532                {
533                    self.show_mutating_upvar(tcx, id.expect_local(), the_place_err, &mut err);
534                }
535            }
536
537            // Complete hack to approximate old AST-borrowck diagnostic: if the span starts
538            // with a mutable borrow of a local variable, then just suggest the user remove it.
539            PlaceRef { local: _, projection: [] }
540                if self
541                    .infcx
542                    .tcx
543                    .sess
544                    .source_map()
545                    .span_to_snippet(span)
546                    .is_ok_and(|snippet| snippet.starts_with("&mut ")) =>
547            {
548                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("cannot {0}", act))
    })format!("cannot {act}"));
549                err.span_suggestion_verbose(
550                    span.with_hi(span.lo() + BytePos(5)),
551                    "try removing `&mut` here",
552                    "",
553                    Applicability::MaybeIncorrect,
554                );
555            }
556
557            PlaceRef { local, projection: [ProjectionElem::Deref] }
558                if self.body.local_decls[local].is_ref_for_guard() =>
559            {
560                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("cannot {0}", act))
    })format!("cannot {act}"));
561                err.note(
562                    "variables bound in patterns are immutable until the end of the pattern guard",
563                );
564            }
565
566            // We want to point out when a `&` can be readily replaced
567            // with an `&mut`.
568            //
569            // FIXME: can this case be generalized to work for an
570            // arbitrary base for the projection?
571            PlaceRef { local, projection: [ProjectionElem::Deref] }
572                if self.body.local_decls[local].is_user_variable() =>
573            {
574                let local_decl = &self.body.local_decls[local];
575
576                let (pointer_sigil, pointer_desc) =
577                    if local_decl.ty.is_ref() { ("&", "reference") } else { ("*const", "pointer") };
578
579                match self.local_name(local) {
580                    Some(name) if !local_decl.from_compiler_desugaring() => {
581                        err.span_label(
582                            span,
583                            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("`{0}` is a `{1}` {2}, so it cannot be {3}",
                name, pointer_sigil, pointer_desc, acted_on))
    })format!(
584                                "`{name}` is a `{pointer_sigil}` {pointer_desc}, so it cannot be \
585                                 {acted_on}",
586                            ),
587                        );
588
589                        self.suggest_using_iter_mut(&mut err);
590                        self.suggest_make_local_mut(&mut err, local, name);
591                    }
592                    _ => {
593                        err.span_label(
594                            span,
595                            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("cannot {0} through `{1}` {2}", act,
                pointer_sigil, pointer_desc))
    })format!("cannot {act} through `{pointer_sigil}` {pointer_desc}"),
596                        );
597                    }
598                }
599            }
600
601            PlaceRef { local, projection: [ProjectionElem::Deref] }
602                if local == ty::CAPTURE_STRUCT_LOCAL && !self.upvars.is_empty() =>
603            {
604                self.point_at_binding_outside_closure(&mut err, local, access_place);
605                self.expected_fn_found_fn_mut_call(&mut err, span, act);
606            }
607
608            PlaceRef { local, projection: [.., ProjectionElem::Deref] } => {
609                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("cannot {0}", act))
    })format!("cannot {act}"));
610
611                match opt_source {
612                    Some(BorrowedContentSource::OverloadedDeref(ty)) => {
613                        err.help(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("trait `DerefMut` is required to modify through a dereference, but it is not implemented for `{0}`",
                ty))
    })format!(
614                            "trait `DerefMut` is required to modify through a dereference, \
615                             but it is not implemented for `{ty}`",
616                        ));
617                    }
618                    Some(BorrowedContentSource::OverloadedIndex(ty)) => {
619                        err.help(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("trait `IndexMut` is required to modify indexed content, but it is not implemented for `{0}`",
                ty))
    })format!(
620                            "trait `IndexMut` is required to modify indexed content, \
621                             but it is not implemented for `{ty}`",
622                        ));
623                        self.suggest_map_index_mut_alternatives(ty, &mut err, span);
624                    }
625                    _ => {
626                        let local = &self.body.local_decls[local];
627                        match *local.local_info() {
628                            LocalInfo::StaticRef { def_id, .. } => {
629                                let span = self.infcx.tcx.def_span(def_id);
630                                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("this `static` cannot be {0}",
                acted_on))
    })format!("this `static` cannot be {acted_on}"));
631                            }
632                            LocalInfo::ConstRef { def_id } => {
633                                let span = self.infcx.tcx.def_span(def_id);
634                                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("this `const` cannot be {0}",
                acted_on))
    })format!("this `const` cannot be {acted_on}"));
635                            }
636                            LocalInfo::BlockTailTemp(_) | LocalInfo::Boring
637                                if !local.source_info.span.overlaps(span) =>
638                            {
639                                err.span_label(
640                                    local.source_info.span,
641                                    ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("this cannot be {0}", acted_on))
    })format!("this cannot be {acted_on}"),
642                                );
643                            }
644                            _ => {}
645                        }
646                    }
647                }
648            }
649
650            PlaceRef { local, .. } => {
651                let local = &self.body.local_decls[local];
652                if !local.source_info.span.overlaps(span) {
653                    err.span_label(local.source_info.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("this cannot be {0}", acted_on))
    })format!("this cannot be {acted_on}"));
654                }
655                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("cannot {0}", act))
    })format!("cannot {act}"));
656            }
657        }
658
659        if let Some(span) = mut_error {
660            self.buffer_mut_error(span, err, count);
661        } else {
662            self.buffer_error(err);
663        }
664    }
665
666    /// Suggest `map[k] = v` => `map.insert(k, v)` and the like.
667    fn suggest_map_index_mut_alternatives(&self, ty: Ty<'tcx>, err: &mut Diag<'_>, span: Span) {
668        let Some(adt) = ty.ty_adt_def() else { return };
669        let did = adt.did();
670        if self.infcx.tcx.is_diagnostic_item(sym::HashMap, did)
671            || self.infcx.tcx.is_diagnostic_item(sym::BTreeMap, did)
672        {
673            /// Walks through the HIR, looking for the corresponding span for this error.
674            /// When it finds it, see if it corresponds to assignment operator whose LHS
675            /// is an index expr.
676            struct SuggestIndexOperatorAlternativeVisitor<'a, 'diag, 'tcx> {
677                assign_span: Span,
678                err: &'a mut Diag<'diag>,
679                ty: Ty<'tcx>,
680                suggested: bool,
681                infcx: &'a rustc_infer::infer::InferCtxt<'tcx>,
682            }
683
684            impl<'tcx> Visitor<'tcx> for SuggestIndexOperatorAlternativeVisitor<'_, '_, 'tcx> {
685                fn visit_stmt(&mut self, stmt: &'tcx hir::Stmt<'tcx>) {
686                    hir::intravisit::walk_stmt(self, stmt);
687                    let expr = match stmt.kind {
688                        hir::StmtKind::Semi(expr) | hir::StmtKind::Expr(expr) => expr,
689                        hir::StmtKind::Let(hir::LetStmt { init: Some(expr), .. }) => expr,
690                        _ => {
691                            return;
692                        }
693                    };
694
695                    // Because of TypeChecking and indexing, we know: index is &Q
696                    // with K: Eq + Hash + Borrow<Q>,
697                    // with Q: Eq + Hash + ?Sized,
698                    //
699                    // which fulfill the requirements of `get_mut`. If Q=K or Q=&{n}K, the requirements
700                    // of `entry` and `insert` are fulfilled too after dereferencing. If K is not
701                    // copy, a subsequent `clone` call may be needed.
702
703                    /// Taken straight from https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/fn.peel_hir_ty_refs.html
704                    /// Adapted to mid using https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.Ty.html#method.peel_refs
705                    /// Simplified to counting only
706                    /// Peels off all references on the type. Returns the number of references
707                    /// removed.
708                    fn count_ty_refs<'tcx>(mut ty: Ty<'tcx>) -> usize {
709                        let mut count = 0;
710                        while let ty::Ref(_, inner_ty, _) = ty.kind() {
711                            ty = *inner_ty;
712                            count += 1;
713                        }
714                        count
715                    }
716
717                    /// Try to strip `n` `&` reference from an expression.
718                    /// If the expression does not have enough leading `&`, return an Error
719                    /// containing a count of the successfully stripped ones and the stripped
720                    /// expression.
721                    fn strip_n_refs<'a, 'b>(
722                        mut expr: &'a Expr<'b>,
723                        n: usize,
724                    ) -> Result<&'a Expr<'b>, (usize, &'a Expr<'b>)> {
725                        for count in 0..n {
726                            match expr {
727                                Expr {
728                                    kind: ExprKind::AddrOf(hir::BorrowKind::Ref, _, inner),
729                                    ..
730                                } => expr = inner,
731                                _ => return Err((count, expr)),
732                            }
733                        }
734                        Ok(expr)
735                    }
736
737                    // we know ty is a map, with a key type at walk distance 2.
738                    let key_ty = self.ty.walk().nth(1).unwrap().expect_ty();
739
740                    if let hir::ExprKind::Assign(place, rv, _sp) = expr.kind
741                        && let hir::ExprKind::Index(val, index, _) = place.kind
742                        && (expr.span == self.assign_span || place.span == self.assign_span)
743                    {
744                        // val[index] = rv;
745                        let index_ty =
746                            self.infcx.tcx.typeck(val.hir_id.owner.def_id).expr_ty(index);
747
748                        let (borrowed_prefix, borrowed_index);
749
750                        // only suggest `insert` and `entry` if index is of type K or &{n}K or *{n}K (when there is a Borrow impl for this case).
751                        // We use `peel_refs` because borrow lifetimes may differ in both index and
752                        // key. I.e, if they are of the same base type:
753                        if index_ty.peel_refs() == key_ty.peel_refs() {
754                            let (index_refs, key_refs) =
755                                (count_ty_refs(index_ty), count_ty_refs(key_ty));
756
757                            let (deref_prefix, deref_index) = if index_refs >= key_refs {
758                                // index is &{n}K
759                                strip_n_refs(index, index_refs - key_refs)
760                                    .map(|val| ("".to_string(), val))
761                                    .unwrap_or_else(|(depth, val)| {
762                                        (
763                                            if key_refs == 0 {
764                                                "*".repeat(
765                                                    (index_refs-key_refs).checked_sub(depth).expect("return depth from strip_n_refs should be smaller than the input")
766                                                )
767                                            } else {
768                                                String::new() //if key K is a ref, autoderef finish this for us.
769                                            },
770                                            val,
771                                        )
772                                    })
773                            } else {
774                                // in this case the minimal ref addition works for all subcases
775                                ("&".repeat(key_refs - index_refs), index)
776                            };
777
778                            self.err.multipart_suggestion(
779                                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("use `.insert()` to insert a value into a `{0}`",
                self.ty))
    })format!("use `.insert()` to insert a value into a `{}`", self.ty),
780                                ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(val.span.shrink_to_hi().with_hi(deref_index.span.lo()),
                    ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!(".insert({0}",
                                    deref_prefix))
                        })),
                (deref_index.span.shrink_to_hi().with_hi(rv.span.lo()),
                    ", ".to_string()),
                (rv.span.shrink_to_hi(), ")".to_string())]))vec![
781                                    // val.insert({deref_prefix}{deref_index}, rv);
782                                    (
783                                        val.span.shrink_to_hi().with_hi(deref_index.span.lo()),
784                                        format!(".insert({deref_prefix}"),
785                                    ),
786                                    (
787                                        deref_index.span.shrink_to_hi().with_hi(rv.span.lo()),
788                                        ", ".to_string(),
789                                    ),
790                                    (rv.span.shrink_to_hi(), ")".to_string()),
791                                ],
792                                Applicability::MaybeIncorrect,
793                            );
794                            self.err.multipart_suggestion(
795                                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("use the entry API to modify a `{0}` for more flexibility",
                self.ty))
    })format!(
796                                    "use the entry API to modify a `{}` for more flexibility",
797                                    self.ty
798                                ),
799                                ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(val.span.shrink_to_lo(), "let val = ".to_string()),
                (val.span.shrink_to_hi().with_hi(deref_index.span.lo()),
                    ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!(".entry({0}",
                                    deref_prefix))
                        })),
                (deref_index.span.shrink_to_hi().with_hi(rv.span.lo()),
                    ").insert_entry(".to_string()),
                (rv.span.shrink_to_hi(), ")".to_string())]))vec![
800                                    // let x = val.entry({deref_prefix}{deref_index}).insert_entry(rv);
801                                    (val.span.shrink_to_lo(), "let val = ".to_string()),
802                                    (
803                                        val.span.shrink_to_hi().with_hi(deref_index.span.lo()),
804                                        format!(".entry({deref_prefix}"),
805                                    ),
806                                    (
807                                        deref_index.span.shrink_to_hi().with_hi(rv.span.lo()),
808                                        ").insert_entry(".to_string(),
809                                    ),
810                                    (rv.span.shrink_to_hi(), ")".to_string()),
811                                ],
812                                Applicability::MaybeIncorrect,
813                            );
814
815                            // we can make the next suggestions nicer by stripping as many leading `&` as
816                            // we can, autoderef will do the rest
817                            (borrowed_prefix, borrowed_index) = (
818                                String::new(),
819                                if index_refs > key_refs {
820                                    strip_n_refs(index, index_refs - key_refs - 1)
821                                        .unwrap_or_else(|(_depth, val)| val)
822                                    // even if we tried to strip more, we can stop there thanks to autoderef
823                                } else {
824                                    // when the diff is negative or zero, we already are in the index=&Q case.
825                                    index
826                                },
827                            );
828                        } else {
829                            (borrowed_prefix, borrowed_index) = (String::new(), index)
830                        }
831                        // in all cases, suggest get_mut because K:Borrow<K> or Q:Borrow<K> as a
832                        // requirement of indexing.
833                        self.err.multipart_suggestion(
834                            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("use `.get_mut()` to modify an existing key in a `{0}`",
                self.ty))
    })format!(
835                                "use `.get_mut()` to modify an existing key in a `{}`",
836                                self.ty,
837                            ),
838                            ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(val.span.shrink_to_lo(), "if let Some(val) = ".to_string()),
                (val.span.shrink_to_hi().with_hi(borrowed_index.span.lo()),
                    ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!(".get_mut({0}",
                                    borrowed_prefix))
                        })),
                (borrowed_index.span.shrink_to_hi().with_hi(place.span.hi()),
                    ") { *val".to_string()),
                (rv.span.shrink_to_hi(), "; }".to_string())]))vec![
839                                // if let Some(v) = val.get_mut({borrowed_prefix}{borrowed_index}) { *v = rv; }
840                                (val.span.shrink_to_lo(), "if let Some(val) = ".to_string()),
841                                (
842                                    val.span.shrink_to_hi().with_hi(borrowed_index.span.lo()),
843                                    format!(".get_mut({borrowed_prefix}"),
844                                ),
845                                (
846                                    borrowed_index.span.shrink_to_hi().with_hi(place.span.hi()),
847                                    ") { *val".to_string(),
848                                ),
849                                (rv.span.shrink_to_hi(), "; }".to_string()),
850                            ],
851                            Applicability::MaybeIncorrect,
852                        );
853
854                        self.suggested = true;
855                    } else if let hir::ExprKind::MethodCall(_path, receiver, _, sp) = expr.kind
856                        && let hir::ExprKind::Index(val, index, _) = receiver.kind
857                        && receiver.span == self.assign_span
858                    {
859                        // val[index].path(args..);
860                        self.err.multipart_suggestion(
861                            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("to modify a `{0}` use `.get_mut()`",
                self.ty))
    })format!("to modify a `{}` use `.get_mut()`", self.ty),
862                            ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(val.span.shrink_to_lo(), "if let Some(val) = ".to_string()),
                (val.span.shrink_to_hi().with_hi(index.span.lo()),
                    ".get_mut(".to_string()),
                (index.span.shrink_to_hi().with_hi(receiver.span.hi()),
                    ") { val".to_string()),
                (sp.shrink_to_hi(), "; }".to_string())]))vec![
863                                (val.span.shrink_to_lo(), "if let Some(val) = ".to_string()),
864                                (
865                                    val.span.shrink_to_hi().with_hi(index.span.lo()),
866                                    ".get_mut(".to_string(),
867                                ),
868                                (
869                                    index.span.shrink_to_hi().with_hi(receiver.span.hi()),
870                                    ") { val".to_string(),
871                                ),
872                                (sp.shrink_to_hi(), "; }".to_string()),
873                            ],
874                            Applicability::MachineApplicable,
875                        );
876                        self.suggested = true;
877                    }
878                }
879            }
880            let def_id = self.body.source.def_id();
881            let Some(local_def_id) = def_id.as_local() else { return };
882            let Some(body) = self.infcx.tcx.hir_maybe_body_owned_by(local_def_id) else { return };
883
884            let mut v = SuggestIndexOperatorAlternativeVisitor {
885                assign_span: span,
886                err,
887                ty,
888                suggested: false,
889                infcx: self.infcx,
890            };
891            v.visit_body(&body);
892            if !v.suggested {
893                err.help(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("to modify a `{0}`, use `.get_mut()`, `.insert()` or the entry API",
                ty))
    })format!(
894                    "to modify a `{ty}`, use `.get_mut()`, `.insert()` or the entry API",
895                ));
896            }
897        }
898    }
899
900    /// User cannot make signature of a trait mutable without changing the
901    /// trait. So we find if this error belongs to a trait and if so we move
902    /// suggestion to the trait or disable it if it is out of scope of this crate
903    ///
904    /// The returned values are:
905    ///  - is the current item an assoc `fn` of an impl that corresponds to a trait def? if so, we
906    ///    have to suggest changing both the impl `fn` arg and the trait `fn` arg
907    ///  - is the trait from the local crate? If not, we can't suggest changing signatures
908    ///  - `Span` of the argument in the trait definition
909    fn is_error_in_trait(&self, local: Local) -> (bool, bool, Option<Span>) {
910        let tcx = self.infcx.tcx;
911        if self.body.local_kind(local) != LocalKind::Arg {
912            return (false, false, None);
913        }
914        let my_def = self.body.source.def_id();
915        let Some(td) = tcx.trait_impl_of_assoc(my_def).map(|id| self.infcx.tcx.impl_trait_id(id))
916        else {
917            return (false, false, None);
918        };
919
920        let implemented_trait_item = self.infcx.tcx.trait_item_of(my_def);
921
922        (
923            true,
924            td.is_local(),
925            implemented_trait_item.and_then(|f_in_trait| {
926                let f_in_trait = f_in_trait.as_local()?;
927                if let Node::TraitItem(ti) = self.infcx.tcx.hir_node_by_def_id(f_in_trait)
928                    && let hir::TraitItemKind::Fn(sig, _) = ti.kind
929                    && let Some(ty) = sig.decl.inputs.get(local.index() - 1)
930                    && let hir::TyKind::Ref(_, mut_ty) = ty.kind
931                    && let hir::Mutability::Not = mut_ty.mutbl
932                    && sig.decl.implicit_self().has_implicit_self()
933                {
934                    Some(ty.span)
935                } else {
936                    None
937                }
938            }),
939        )
940    }
941
942    fn construct_mut_suggestion_for_local_binding_patterns(
943        &self,
944        err: &mut Diag<'_>,
945        local: Local,
946    ) {
947        let local_decl = &self.body.local_decls[local];
948        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs:948",
                        "rustc_borrowck::diagnostics::mutability_errors",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs"),
                        ::tracing_core::__macro_support::Option::Some(948u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_borrowck::diagnostics::mutability_errors"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("local_decl: {0:?}",
                                                    local_decl) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("local_decl: {:?}", local_decl);
949        let pat_span = match *local_decl.local_info() {
950            LocalInfo::User(BindingForm::Var(mir::VarBindingForm {
951                binding_mode: BindingMode(ByRef::No, Mutability::Not),
952                opt_ty_info: _,
953                opt_match_place: _,
954                pat_span,
955                introductions: _,
956            })) => pat_span,
957            _ => local_decl.source_info.span,
958        };
959
960        // With ref-binding patterns, the mutability suggestion has to apply to
961        // the binding, not the reference (which would be a type error):
962        //
963        // `let &b = a;` -> `let &(mut b) = a;`
964        // or
965        // `fn foo(&x: &i32)` -> `fn foo(&(mut x): &i32)`
966        let def_id = self.body.source.def_id();
967        if let Some(local_def_id) = def_id.as_local()
968            && let Some(body) = self.infcx.tcx.hir_maybe_body_owned_by(local_def_id)
969            && let Some(hir_id) = (BindingFinder { span: pat_span }).visit_body(&body).break_value()
970            && let node = self.infcx.tcx.hir_node(hir_id)
971            && let hir::Node::LetStmt(hir::LetStmt {
972                pat: hir::Pat { kind: hir::PatKind::Ref(_, _, _), .. },
973                ..
974            })
975            | hir::Node::Param(Param {
976                pat: hir::Pat { kind: hir::PatKind::Ref(_, _, _), .. },
977                ..
978            }) = node
979        {
980            err.multipart_suggestion(
981                "consider changing this to be mutable",
982                ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(pat_span.until(local_decl.source_info.span), "&(mut ".to_string()),
                (local_decl.source_info.span.shrink_to_hi().with_hi(pat_span.hi()),
                    ")".to_string())]))vec![
983                    (pat_span.until(local_decl.source_info.span), "&(mut ".to_string()),
984                    (
985                        local_decl.source_info.span.shrink_to_hi().with_hi(pat_span.hi()),
986                        ")".to_string(),
987                    ),
988                ],
989                Applicability::MachineApplicable,
990            );
991            return;
992        }
993
994        err.span_suggestion_verbose(
995            local_decl.source_info.span.shrink_to_lo(),
996            "consider changing this to be mutable",
997            "mut ",
998            Applicability::MachineApplicable,
999        );
1000    }
1001
1002    // Point to span of upvar making closure call that requires a mutable borrow
1003    fn show_mutating_upvar(
1004        &self,
1005        tcx: TyCtxt<'_>,
1006        closure_local_def_id: hir::def_id::LocalDefId,
1007        the_place_err: PlaceRef<'tcx>,
1008        err: &mut Diag<'_>,
1009    ) {
1010        let tables = tcx.typeck(closure_local_def_id);
1011        if let Some((span, closure_kind_origin)) = tcx.closure_kind_origin(closure_local_def_id) {
1012            let reason = if let PlaceBase::Upvar(upvar_id) = closure_kind_origin.base {
1013                let upvar = ty::place_to_string_for_capture(tcx, closure_kind_origin);
1014                let root_hir_id = upvar_id.var_path.hir_id;
1015                // We have an origin for this closure kind starting at this root variable so it's
1016                // safe to unwrap here.
1017                let captured_places =
1018                    tables.closure_min_captures[&closure_local_def_id].get(&root_hir_id).unwrap();
1019
1020                let origin_projection = closure_kind_origin
1021                    .projections
1022                    .iter()
1023                    .map(|proj| proj.kind)
1024                    .collect::<Vec<_>>();
1025                let mut capture_reason = String::new();
1026                for captured_place in captured_places {
1027                    let captured_place_kinds = captured_place
1028                        .place
1029                        .projections
1030                        .iter()
1031                        .map(|proj| proj.kind)
1032                        .collect::<Vec<_>>();
1033                    if rustc_middle::ty::is_ancestor_or_same_capture(
1034                        &captured_place_kinds,
1035                        &origin_projection,
1036                    ) {
1037                        match captured_place.info.capture_kind {
1038                            ty::UpvarCapture::ByRef(
1039                                ty::BorrowKind::Mutable | ty::BorrowKind::UniqueImmutable,
1040                            ) => {
1041                                capture_reason = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("mutable borrow of `{0}`", upvar))
    })format!("mutable borrow of `{upvar}`");
1042                            }
1043                            ty::UpvarCapture::ByValue | ty::UpvarCapture::ByUse => {
1044                                capture_reason = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("possible mutation of `{0}`",
                upvar))
    })format!("possible mutation of `{upvar}`");
1045                            }
1046                            _ => bug_impl(None, format_args!("upvar `{0}` borrowed, but not mutably", upvar),
    Location::caller())bug!("upvar `{upvar}` borrowed, but not mutably"),
1047                        }
1048                        break;
1049                    }
1050                }
1051                if capture_reason.is_empty() {
1052                    bug_impl(None,
    format_args!("upvar `{0}` borrowed, but cannot find reason", upvar),
    Location::caller());bug!("upvar `{upvar}` borrowed, but cannot find reason");
1053                }
1054                capture_reason
1055            } else {
1056                bug_impl(None, format_args!("not an upvar"), Location::caller())bug!("not an upvar")
1057            };
1058            // Sometimes we deliberately don't store the name of a place when coming from a macro in
1059            // another crate. We generally want to limit those diagnostics a little, to hide
1060            // implementation details (such as those from pin!() or format!()). In that case show a
1061            // slightly different error message, or none at all if something else happened. In other
1062            // cases the message is likely not useful.
1063            if let Some(place_name) = self.describe_place(the_place_err) {
1064                err.span_label(
1065                    *span,
1066                    ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("calling `{0}` requires mutable binding due to {1}",
                place_name, reason))
    })format!("calling `{place_name}` requires mutable binding due to {reason}"),
1067                );
1068            } else if span.from_expansion() {
1069                err.span_label(
1070                    *span,
1071                    ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("a call in this macro requires a mutable binding due to {0}",
                reason))
    })format!("a call in this macro requires a mutable binding due to {reason}",),
1072                );
1073            }
1074        }
1075    }
1076
1077    // Attempt to search similar mutable associated items for suggestion.
1078    // In the future, attempt in all path but initially for RHS of for_loop
1079    fn suggest_similar_mut_method_for_for_loop(&self, err: &mut Diag<'_>, span: Span) {
1080        use hir::ExprKind::{AddrOf, Block, Call, MethodCall};
1081        use hir::{BorrowKind, Expr};
1082
1083        let tcx = self.infcx.tcx;
1084        struct Finder {
1085            span: Span,
1086        }
1087
1088        impl<'tcx> Visitor<'tcx> for Finder {
1089            type Result = ControlFlow<&'tcx Expr<'tcx>>;
1090            fn visit_expr(&mut self, e: &'tcx hir::Expr<'tcx>) -> Self::Result {
1091                if e.span == self.span {
1092                    ControlFlow::Break(e)
1093                } else {
1094                    hir::intravisit::walk_expr(self, e)
1095                }
1096            }
1097        }
1098        let Some(body) = tcx.hir_maybe_body_owned_by(self.mir_def_id()) else { return };
1099        let Block(block, _) = body.value.kind else { return };
1100        // `span` corresponds to the expression being iterated, find the `for`-loop desugared
1101        // expression with that span in order to identify potential fixes when encountering a
1102        // read-only iterator that should be mutable.
1103        let mut expr = if let ControlFlow::Break(expr) = (Finder { span }).visit_block(block)
1104            && let Call(_, [expr]) = expr.kind
1105        {
1106            expr
1107        } else {
1108            return;
1109        };
1110        loop {
1111            match expr.kind {
1112                MethodCall(path_segment, _, _, span) => {
1113                    // We have `for _ in iter.read_only_iter()`, try to
1114                    // suggest `for _ in iter.mutable_iter()` instead.
1115                    let opt_suggestions = tcx
1116                        .typeck(path_segment.hir_id.owner.def_id)
1117                        .type_dependent_def_id(expr.hir_id)
1118                        .and_then(|def_id| tcx.impl_of_assoc(def_id))
1119                        .map(|def_id| tcx.associated_items(def_id))
1120                        .map(|assoc_items| {
1121                            assoc_items
1122                                .in_definition_order()
1123                                .map(|assoc_item_def| assoc_item_def.ident(tcx))
1124                                .filter(|&ident| {
1125                                    let original_method_ident = path_segment.ident;
1126                                    original_method_ident != ident
1127                                        && ident
1128                                            .as_str()
1129                                            .starts_with(&original_method_ident.name.to_string())
1130                                })
1131                                .map(|ident| ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}()", ident))
    })format!("{ident}()"))
1132                                .peekable()
1133                        });
1134
1135                    if let Some(mut suggestions) = opt_suggestions
1136                        && suggestions.peek().is_some()
1137                    {
1138                        err.span_suggestions(
1139                            span,
1140                            "use mutable method",
1141                            suggestions,
1142                            Applicability::MaybeIncorrect,
1143                        );
1144                    }
1145                }
1146                AddrOf(BorrowKind::Ref, Mutability::Not, expr) => {
1147                    // We have `for _ in &i`, suggest `for _ in &mut i`.
1148                    err.span_suggestion_verbose(
1149                        expr.span.shrink_to_lo(),
1150                        "use a mutable iterator instead",
1151                        "mut ",
1152                        Applicability::MachineApplicable,
1153                    );
1154                }
1155                ExprKind::Path(hir::QPath::Resolved(None, path))
1156                    if let hir::def::Res::Local(hir_id) = path.res
1157                        && let hir::Node::LetStmt(stmt) =
1158                            self.infcx.tcx.parent_hir_node(hir_id)
1159                        && let Some(init) = stmt.init =>
1160                {
1161                    // We're iterating over a binding, try to suggest changing the binding's expr.
1162                    expr = init;
1163                    continue;
1164                }
1165                _ => {}
1166            }
1167            break;
1168        }
1169    }
1170
1171    /// When modifying a binding from inside of an `Fn` closure, point at the binding definition.
1172    fn point_at_binding_outside_closure(
1173        &self,
1174        err: &mut Diag<'_>,
1175        local: Local,
1176        access_place: Place<'tcx>,
1177    ) {
1178        let place = access_place.as_ref();
1179        for (index, elem) in place.projection.into_iter().enumerate() {
1180            if let ProjectionElem::Deref = elem {
1181                if index == 0 {
1182                    if self.body.local_decls[local].is_ref_for_guard() {
1183                        continue;
1184                    }
1185                    if let LocalInfo::StaticRef { .. } = *self.body.local_decls[local].local_info()
1186                    {
1187                        continue;
1188                    }
1189                }
1190                if let Some(field) = self.is_upvar_field_projection(PlaceRef {
1191                    local,
1192                    projection: place.projection.split_at(index + 1).0,
1193                }) {
1194                    let var_index = field.index();
1195                    let upvar = self.upvars[var_index];
1196                    if let Some(hir_id) = upvar.info.capture_kind_expr_id {
1197                        let node = self.infcx.tcx.hir_node(hir_id);
1198                        if let hir::Node::Expr(expr) = node
1199                            && let hir::ExprKind::Path(hir::QPath::Resolved(None, path)) = expr.kind
1200                            && let hir::def::Res::Local(hir_id) = path.res
1201                            && let hir::Node::Pat(pat) = self.infcx.tcx.hir_node(hir_id)
1202                        {
1203                            let name = upvar.to_string(self.infcx.tcx);
1204                            err.span_label(
1205                                pat.span,
1206                                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("`{0}` declared here, outside the closure",
                name))
    })format!("`{name}` declared here, outside the closure"),
1207                            );
1208                            break;
1209                        }
1210                    }
1211                }
1212            }
1213        }
1214    }
1215    /// Targeted error when encountering an `FnMut` closure where an `Fn` closure was expected.
1216    fn expected_fn_found_fn_mut_call(&self, err: &mut Diag<'_>, sp: Span, act: &str) {
1217        err.span_label(sp, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("cannot {0}", act))
    })format!("cannot {act}"));
1218
1219        let tcx = self.infcx.tcx;
1220        let closure_id = self.mir_hir_id();
1221        let closure_span = tcx.def_span(self.mir_def_id());
1222        let fn_call_id = tcx.parent_hir_id(closure_id);
1223        let node = tcx.hir_node(fn_call_id);
1224        let def_id = tcx.hir_enclosing_body_owner(fn_call_id);
1225        let mut look_at_return = true;
1226
1227        err.span_label(closure_span, "in this closure");
1228        let closure_arg_has_fn_trait_bound =
1229            |callee_def_id, input_index, generic_args: ty::GenericArgsRef<'tcx>| {
1230                let sig = tcx.fn_sig(callee_def_id).instantiate(tcx, generic_args).skip_binder();
1231                let Some(input_ty): Option<Ty<'tcx>> = sig.inputs().get(input_index).copied()
1232                else {
1233                    return false;
1234                };
1235
1236                tcx.clauses_of(callee_def_id).instantiate(tcx, generic_args).clauses.iter().any(
1237                    |clause| {
1238                        clause.as_trait_clause().is_some_and(|trait_pred| {
1239                            trait_pred.polarity() == ty::ClausePolarity::Positive
1240                                && tcx.fn_trait_kind_from_def_id(trait_pred.def_id())
1241                                    == Some(ty::ClosureKind::Fn)
1242                                && trait_pred.self_ty().skip_binder().peel_refs()
1243                                    == input_ty.peel_refs()
1244                        })
1245                    },
1246                )
1247            };
1248
1249        // If the HIR node is a function or method call, get the DefId
1250        // of the callee function or method, the span, and argument info for the call expr.
1251        let get_call_details =
1252            || -> Option<(DefId, Span, usize, usize, ty::GenericArgsRef<'tcx>)> {
1253                let hir::Node::Expr(hir::Expr { hir_id, kind, .. }) = node else {
1254                    return None;
1255                };
1256
1257                let typeck_results = tcx.typeck(def_id);
1258
1259                match kind {
1260                    hir::ExprKind::Call(expr, args) => {
1261                        if let Some(ty::FnDef(def_id, generic_args)) =
1262                            typeck_results.node_type_opt(expr.hir_id).as_ref().map(|ty| ty.kind())
1263                        {
1264                            let arg_pos = args.iter().position(|arg| arg.hir_id == closure_id)?;
1265                            Some((
1266                                *def_id,
1267                                expr.span,
1268                                arg_pos,
1269                                arg_pos,
1270                                generic_args.no_bound_vars().unwrap(),
1271                            ))
1272                        } else {
1273                            None
1274                        }
1275                    }
1276                    hir::ExprKind::MethodCall(_, _, args, span) => {
1277                        let arg_pos = args.iter().position(|arg| arg.hir_id == closure_id)?;
1278                        let def_id = typeck_results.type_dependent_def_id(*hir_id)?;
1279                        let generic_args = typeck_results.node_args_opt(*hir_id)?;
1280                        Some((def_id, *span, arg_pos, arg_pos + 1, generic_args))
1281                    }
1282                    _ => None,
1283                }
1284            };
1285
1286        // If we can detect the expression to be a function or method call where the closure was
1287        // an argument, we point at the function or method definition argument...
1288        if let Some((callee_def_id, call_span, arg_pos, input_index, generic_args)) =
1289            get_call_details()
1290        {
1291            let arg = match tcx.hir_get_if_local(callee_def_id) {
1292                Some(
1293                    hir::Node::Item(hir::Item {
1294                        kind: hir::ItemKind::Fn { ident, sig, .. }, ..
1295                    })
1296                    | hir::Node::TraitItem(hir::TraitItem {
1297                        ident,
1298                        kind: hir::TraitItemKind::Fn(sig, _),
1299                        ..
1300                    })
1301                    | hir::Node::ImplItem(hir::ImplItem {
1302                        ident,
1303                        kind: hir::ImplItemKind::Fn(sig, _),
1304                        ..
1305                    }),
1306                ) => Some(
1307                    sig.decl
1308                        .inputs
1309                        .get(
1310                            arg_pos
1311                                + if sig.decl.implicit_self().has_implicit_self() { 1 } else { 0 },
1312                        )
1313                        .map(|arg| arg.span)
1314                        .unwrap_or(ident.span),
1315                ),
1316                _ => None,
1317            };
1318            if let Some(span) = arg {
1319                err.span_label(span, "change this to accept `FnMut` instead of `Fn`");
1320                err.span_label(call_span, "expects `Fn` instead of `FnMut`");
1321                look_at_return = false;
1322            } else if closure_arg_has_fn_trait_bound(callee_def_id, input_index, generic_args) {
1323                // The callee is not local, so we cannot point at its argument declaration, but we
1324                // can still explain that this call site expects an `Fn` closure. Avoid falling
1325                // through to the enclosing function's return type, which is misleading in cases
1326                // like `flat_map(|_| external::map(|_| ...))`.
1327                err.span_label(call_span, "expects `Fn` instead of `FnMut`");
1328                look_at_return = false;
1329            }
1330        }
1331
1332        if look_at_return && tcx.hir_get_fn_id_for_return_block(closure_id).is_some() {
1333            // ...otherwise we are probably in the tail expression of the function, point at the
1334            // return type.
1335            match tcx.hir_node_by_def_id(tcx.hir_get_parent_item(fn_call_id).def_id) {
1336                hir::Node::Item(hir::Item {
1337                    kind: hir::ItemKind::Fn { ident, sig, .. }, ..
1338                })
1339                | hir::Node::TraitItem(hir::TraitItem {
1340                    ident,
1341                    kind: hir::TraitItemKind::Fn(sig, _),
1342                    ..
1343                })
1344                | hir::Node::ImplItem(hir::ImplItem {
1345                    ident,
1346                    kind: hir::ImplItemKind::Fn(sig, _),
1347                    ..
1348                }) => {
1349                    err.span_label(ident.span, "");
1350                    err.span_label(
1351                        sig.decl.output.span(),
1352                        "change this to return `FnMut` instead of `Fn`",
1353                    );
1354                }
1355                _ => {}
1356            }
1357        }
1358    }
1359
1360    fn suggest_using_iter_mut(&self, err: &mut Diag<'_>) {
1361        let source = self.body.source;
1362        if let InstanceKind::Item(def_id) = source.instance
1363            && let Some(Node::Expr(hir::Expr { hir_id, kind, .. })) =
1364                self.infcx.tcx.hir_get_if_local(def_id)
1365            && let ExprKind::Closure(hir::Closure { kind: hir::ClosureKind::Closure, .. }) = kind
1366            && let Node::Expr(expr) = self.infcx.tcx.parent_hir_node(*hir_id)
1367        {
1368            let mut cur_expr = expr;
1369            while let ExprKind::MethodCall(path_segment, recv, _, _) = cur_expr.kind {
1370                if path_segment.ident.name == sym::iter {
1371                    // Check that the type has an `iter_mut` method.
1372                    let res = self
1373                        .infcx
1374                        .tcx
1375                        .typeck(path_segment.hir_id.owner.def_id)
1376                        .type_dependent_def_id(cur_expr.hir_id)
1377                        .and_then(|def_id| self.infcx.tcx.impl_of_assoc(def_id))
1378                        .map(|def_id| self.infcx.tcx.associated_items(def_id))
1379                        .map(|assoc_items| {
1380                            assoc_items.filter_by_name_unhygienic(sym::iter_mut).peekable()
1381                        });
1382
1383                    if let Some(mut res) = res
1384                        && res.peek().is_some()
1385                    {
1386                        err.span_suggestion_verbose(
1387                            path_segment.ident.span,
1388                            "you may want to use `iter_mut` here",
1389                            "iter_mut",
1390                            Applicability::MaybeIncorrect,
1391                        );
1392                    }
1393                    break;
1394                } else {
1395                    cur_expr = recv;
1396                }
1397            }
1398        }
1399    }
1400
1401    fn suggest_make_local_mut(&self, err: &mut Diag<'_>, local: Local, name: Symbol) {
1402        let local_decl = &self.body.local_decls[local];
1403
1404        let (pointer_sigil, pointer_desc) =
1405            if local_decl.ty.is_ref() { ("&", "reference") } else { ("*const", "pointer") };
1406
1407        let (is_trait_sig, is_local, local_trait) = self.is_error_in_trait(local);
1408
1409        if is_trait_sig && !is_local {
1410            // Do not suggest changing the signature when the trait comes from another crate.
1411            err.span_label(
1412                local_decl.source_info.span,
1413                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("this is an immutable {0}",
                pointer_desc))
    })format!("this is an immutable {pointer_desc}"),
1414            );
1415            return;
1416        }
1417
1418        // Do not suggest changing type if that is not under user control.
1419        if self.is_closure_arg_with_non_locally_decided_type(local) {
1420            return;
1421        }
1422
1423        let decl_span = local_decl.source_info.span;
1424
1425        let (amp_mut_sugg, local_var_ty_info) = match *local_decl.local_info() {
1426            LocalInfo::User(mir::BindingForm::ImplicitSelf(_)) => {
1427                let (span, suggestion) = suggest_ampmut_self(self.infcx.tcx, decl_span);
1428                let additional = local_trait.map(|span| suggest_ampmut_self(self.infcx.tcx, span));
1429                (AmpMutSugg::Type { span, suggestion, additional }, None)
1430            }
1431
1432            LocalInfo::User(mir::BindingForm::Var(mir::VarBindingForm {
1433                binding_mode: BindingMode(ByRef::No, _),
1434                opt_ty_info,
1435                ..
1436            })) => {
1437                // Check if the RHS is from desugaring.
1438                let first_assignment = find_assignments(&self.body, local).first().copied();
1439                let first_assignment_stmt = first_assignment
1440                    .and_then(|loc| self.body[loc.block].statements.get(loc.statement_index));
1441                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs:1441",
                        "rustc_borrowck::diagnostics::mutability_errors",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs"),
                        ::tracing_core::__macro_support::Option::Some(1441u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_borrowck::diagnostics::mutability_errors"),
                        ::tracing_core::field::FieldSet::new(&[{
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("first_assignment_stmt")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("first_assignment_stmt");
                                            NAME.as_str()
                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&first_assignment_stmt)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};trace!(?first_assignment_stmt);
1442                let opt_assignment_rhs_span =
1443                    first_assignment.map(|loc| self.body.source_info(loc).span);
1444                let mut source_span = opt_assignment_rhs_span;
1445                if let Some(mir::Statement {
1446                    source_info: _,
1447                    kind:
1448                        mir::StatementKind::Assign((_, mir::Rvalue::Use(mir::Operand::Copy(place), _))),
1449                    ..
1450                }) = first_assignment_stmt
1451                {
1452                    let local_span = self.body.local_decls[place.local].source_info.span;
1453                    // `&self` in async functions have a `desugaring_kind`, but the local we assign
1454                    // it with does not, so use the local_span for our checks later.
1455                    source_span = Some(local_span);
1456                    if let Some(DesugaringKind::ForLoop) = local_span.desugaring_kind() {
1457                        // On for loops, RHS points to the iterator part.
1458                        self.suggest_similar_mut_method_for_for_loop(err, local_span);
1459                        err.span_label(
1460                            local_span,
1461                            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("this iterator yields `{0}` {1}s",
                pointer_sigil, pointer_desc))
    })format!("this iterator yields `{pointer_sigil}` {pointer_desc}s",),
1462                        );
1463                        return;
1464                    }
1465                }
1466
1467                // Don't create labels for compiler-generated spans or spans not from users' code.
1468                if source_span.is_some_and(|s| {
1469                    s.desugaring_kind().is_some() || self.infcx.tcx.sess.source_map().is_imported(s)
1470                }) {
1471                    return;
1472                }
1473
1474                // This could be because we're in an `async fn`.
1475                if name == kw::SelfLower && opt_ty_info.is_none() {
1476                    let (span, suggestion) = suggest_ampmut_self(self.infcx.tcx, decl_span);
1477                    (AmpMutSugg::Type { span, suggestion, additional: None }, None)
1478                } else if let Some(sugg) =
1479                    suggest_ampmut(self.infcx, self.body(), first_assignment_stmt)
1480                {
1481                    (sugg, opt_ty_info)
1482                } else {
1483                    return;
1484                }
1485            }
1486
1487            LocalInfo::User(mir::BindingForm::Var(mir::VarBindingForm {
1488                binding_mode: BindingMode(ByRef::Yes(..), _),
1489                ..
1490            })) => {
1491                let pattern_span: Span = local_decl.source_info.span;
1492                let Some(span) = suggest_ref_mut(self.infcx.tcx, pattern_span) else {
1493                    return;
1494                };
1495                (AmpMutSugg::Type { span, suggestion: "mut ".to_owned(), additional: None }, None)
1496            }
1497
1498            _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
1499        };
1500
1501        let mut suggest = |suggs: Vec<_>, applicability, extra| {
1502            if suggs.iter().any(|(span, _)| self.infcx.tcx.sess.source_map().is_imported(*span)) {
1503                return;
1504            }
1505
1506            err.multipart_suggestion(
1507                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("consider changing this to be a mutable {1}{0}{2}",
                if is_trait_sig {
                    " in the `impl` method and the `trait` definition"
                } else { "" }, pointer_desc, extra))
    })format!(
1508                    "consider changing this to be a mutable {pointer_desc}{}{extra}",
1509                    if is_trait_sig {
1510                        " in the `impl` method and the `trait` definition"
1511                    } else {
1512                        ""
1513                    }
1514                ),
1515                suggs,
1516                applicability,
1517            );
1518        };
1519
1520        let (mut sugg, add_type_annotation_if_not_exists) = match amp_mut_sugg {
1521            AmpMutSugg::Type { span, suggestion, additional } => {
1522                let mut sugg = ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(span, suggestion)]))vec![(span, suggestion)];
1523                sugg.extend(additional);
1524                suggest(sugg, Applicability::MachineApplicable, "");
1525                return;
1526            }
1527            AmpMutSugg::MapGetMut { span, suggestion } => {
1528                if self.infcx.tcx.sess.source_map().is_imported(span) {
1529                    return;
1530                }
1531                err.multipart_suggestion(
1532                    "consider using `get_mut`",
1533                    ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(span, suggestion)]))vec![(span, suggestion)],
1534                    Applicability::MaybeIncorrect,
1535                );
1536                return;
1537            }
1538            AmpMutSugg::Expr { span, suggestion } => {
1539                // `Expr` suggestions should change type annotations if they already exist (probably immut),
1540                // but do not add new type annotations.
1541                (::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(span, suggestion)]))vec![(span, suggestion)], false)
1542            }
1543            AmpMutSugg::ChangeBinding => (::alloc::vec::Vec::new()vec![], true),
1544        };
1545
1546        // Find a binding's type to make mutable.
1547        let (binding_exists, span) = match local_var_ty_info {
1548            // If this is a variable binding with an explicit type,
1549            // then we will suggest changing it to be mutable.
1550            // This is `Applicability::MachineApplicable`.
1551            Some(ty_span) => (true, ty_span),
1552
1553            // Otherwise, we'll suggest *adding* an annotated type, we'll suggest
1554            // the RHS's type for that.
1555            // This is `Applicability::HasPlaceholders`.
1556            None => (false, decl_span),
1557        };
1558
1559        if !binding_exists && !add_type_annotation_if_not_exists {
1560            suggest(sugg, Applicability::MachineApplicable, "");
1561            return;
1562        }
1563
1564        // If the binding already exists and is a reference with an explicit
1565        // lifetime, then we can suggest adding ` mut`. This is special-cased from
1566        // the path without an explicit lifetime.
1567        let (sugg_span, sugg_str, suggest_now) = if let Ok(src) = self.infcx.tcx.sess.source_map().span_to_snippet(span)
1568            && src.starts_with("&'")
1569            // Note that `&' a T` is invalid so this is correct.
1570            && let Some(ws_pos) = src.find(char::is_whitespace)
1571        {
1572            let span = span.with_lo(span.lo() + BytePos(ws_pos as u32)).shrink_to_lo();
1573            (span, " mut".to_owned(), true)
1574        // If there is already a binding, we modify it to be `mut`.
1575        } else if binding_exists {
1576            // Replace the sigil with the mutable version. We may be dealing
1577            // with parser recovery here and cannot assume the user actually
1578            // typed `&` or `*const`, so we compute the prefix from the snippet.
1579            let Ok(src) = self.infcx.tcx.sess.source_map().span_to_snippet(span) else {
1580                return;
1581            };
1582            let (prefix_len, replacement) = if local_decl.ty.is_ref() {
1583                (src.chars().next().map_or(0, char::len_utf8), "&mut ")
1584            } else {
1585                (src.find("const").map_or(1, |i| i + "const".len()), "*mut ")
1586            };
1587            let ws_len = src[prefix_len..].len() - src[prefix_len..].trim_start().len();
1588            let span = span.with_hi(span.lo() + BytePos((prefix_len + ws_len) as u32));
1589            (span, replacement.to_owned(), true)
1590        } else {
1591            // Otherwise, suggest that the user annotates the binding; We provide the
1592            // type of the local.
1593            let ty = local_decl.ty.builtin_deref(true).unwrap();
1594
1595            (span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}mut {1}",
                if local_decl.ty.is_ref() { "&" } else { "*" }, ty))
    })format!("{}mut {}", if local_decl.ty.is_ref() { "&" } else { "*" }, ty), false)
1596        };
1597
1598        if suggest_now {
1599            // Suggest changing `&x` to `&mut x` and changing `&T` to `&mut T` at the same time.
1600            let has_change = !sugg.is_empty();
1601            sugg.push((sugg_span, sugg_str));
1602            suggest(
1603                sugg,
1604                Applicability::MachineApplicable,
1605                // FIXME(fee1-dead) this somehow doesn't fire
1606                if has_change { " and changing the binding's type" } else { "" },
1607            );
1608            return;
1609        } else if !sugg.is_empty() {
1610            suggest(sugg, Applicability::MachineApplicable, "");
1611            return;
1612        }
1613
1614        let def_id = self.body.source.def_id();
1615        let hir_id = if let Some(local_def_id) = def_id.as_local()
1616            && let Some(body) = self.infcx.tcx.hir_maybe_body_owned_by(local_def_id)
1617        {
1618            BindingFinder { span: sugg_span }.visit_body(&body).break_value()
1619        } else {
1620            None
1621        };
1622        let node = hir_id.map(|hir_id| self.infcx.tcx.hir_node(hir_id));
1623
1624        let Some(hir::Node::LetStmt(local)) = node else {
1625            err.span_label(
1626                sugg_span,
1627                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("consider changing this binding\'s type to be: `{0}`",
                sugg_str))
    })format!("consider changing this binding's type to be: `{sugg_str}`"),
1628            );
1629            return;
1630        };
1631
1632        let tables = self.infcx.tcx.typeck(def_id.as_local().unwrap());
1633        if let Some(clone_trait) = self.infcx.tcx.lang_items().clone_trait()
1634            && let Some(expr) = local.init
1635            && let ty = tables.node_type_opt(expr.hir_id)
1636            && let Some(ty) = ty
1637            && let ty::Ref(..) = ty.kind()
1638        {
1639            match self
1640                .infcx
1641                .type_implements_trait_shallow(clone_trait, ty.peel_refs(), self.infcx.param_env)
1642                .as_ref()
1643                .map(|it| it.as_slice())
1644            {
1645                Some([]) => {
1646                    // FIXME: This error message isn't useful, since we're just
1647                    // vaguely suggesting to clone a value that already
1648                    // implements `Clone`.
1649                    //
1650                    // A correct suggestion here would take into account the fact
1651                    // that inference may be affected by missing types on bindings,
1652                    // etc., to improve "tests/ui/borrowck/issue-91206.stderr", for
1653                    // example.
1654                }
1655                None => {
1656                    if let hir::ExprKind::MethodCall(segment, _rcvr, [], span) = expr.kind
1657                        && segment.ident.name == sym::clone
1658                    {
1659                        err.span_help(
1660                            span,
1661                            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("`{0}` doesn\'t implement `Clone`, so this call clones the reference `{1}`",
                ty.peel_refs(), ty))
    })format!(
1662                                "`{}` doesn't implement `Clone`, so this call clones \
1663                                             the reference `{ty}`",
1664                                ty.peel_refs(),
1665                            ),
1666                        );
1667                    }
1668                    // The type doesn't implement Clone.
1669                    let trait_ref = ty::Binder::dummy(ty::TraitRef::new(
1670                        self.infcx.tcx,
1671                        clone_trait,
1672                        [ty.peel_refs()],
1673                    ));
1674                    let obligation = traits::Obligation::new(
1675                        self.infcx.tcx,
1676                        traits::ObligationCause::dummy(),
1677                        self.infcx.param_env,
1678                        trait_ref,
1679                    );
1680                    self.infcx.err_ctxt().suggest_derive(
1681                        &obligation,
1682                        err,
1683                        trait_ref.upcast(self.infcx.tcx),
1684                    );
1685                }
1686                Some(errors) => {
1687                    if let hir::ExprKind::MethodCall(segment, _rcvr, [], span) = expr.kind
1688                        && segment.ident.name == sym::clone
1689                    {
1690                        err.span_help(
1691                            span,
1692                            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("`{0}` doesn\'t implement `Clone` because its implementations trait bounds could not be met, so this call clones the reference `{1}`",
                ty.peel_refs(), ty))
    })format!(
1693                                "`{}` doesn't implement `Clone` because its \
1694                                             implementations trait bounds could not be met, so \
1695                                             this call clones the reference `{ty}`",
1696                                ty.peel_refs(),
1697                            ),
1698                        );
1699                        err.note(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("the following trait bounds weren\'t met: {0}",
                errors.iter().map(|e|
                                e.obligation.predicate.to_string()).collect::<Vec<_>>().join("\n")))
    })format!(
1700                            "the following trait bounds weren't met: {}",
1701                            errors
1702                                .iter()
1703                                .map(|e| e.obligation.predicate.to_string())
1704                                .collect::<Vec<_>>()
1705                                .join("\n"),
1706                        ));
1707                    }
1708                    // The type doesn't implement Clone because of unmet obligations.
1709                    for error in errors {
1710                        if let traits::FulfillmentErrorCode::Select(
1711                            traits::SelectionError::Unimplemented,
1712                        ) = error.code
1713                            && let ty::PredicateKind::Clause(ty::ClauseKind::Trait(pred)) =
1714                                error.obligation.predicate.kind().skip_binder()
1715                        {
1716                            self.infcx.err_ctxt().suggest_derive(
1717                                &error.obligation,
1718                                err,
1719                                error.obligation.predicate.kind().rebind(pred),
1720                            );
1721                        }
1722                    }
1723                }
1724            }
1725        }
1726        let (changing, span, sugg) = match local.ty {
1727            Some(ty) => ("changing", ty.span, sugg_str),
1728            None => ("specifying", local.pat.span.shrink_to_hi(), ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(": {0}", sugg_str))
    })format!(": {sugg_str}")),
1729        };
1730        err.span_suggestion_verbose(
1731            span,
1732            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("consider {0} this binding\'s type",
                changing))
    })format!("consider {changing} this binding's type"),
1733            sugg,
1734            Applicability::HasPlaceholders,
1735        );
1736    }
1737
1738    /// Returns `true` if `local` is an argument in a closure passed to a
1739    /// function defined in another crate.
1740    ///
1741    /// For example, in the following code this function returns `true` for `x`
1742    /// since `Option::inspect()` is not defined in the current crate:
1743    ///
1744    /// ```text
1745    /// some_option.as_mut().inspect(|x| {
1746    /// ```
1747    fn is_closure_arg_with_non_locally_decided_type(&self, local: Local) -> bool {
1748        // We don't care about regular local variables, only args.
1749        if self.body.local_kind(local) != LocalKind::Arg {
1750            return false;
1751        }
1752
1753        // Make sure we are inside a closure.
1754        let InstanceKind::Item(body_def_id) = self.body.source.instance else {
1755            return false;
1756        };
1757        let Some(Node::Expr(hir::Expr { hir_id: body_hir_id, kind, .. })) =
1758            self.infcx.tcx.hir_get_if_local(body_def_id)
1759        else {
1760            return false;
1761        };
1762        let ExprKind::Closure(hir::Closure { kind: hir::ClosureKind::Closure, .. }) = kind else {
1763            return false;
1764        };
1765
1766        // Check if the method/function that our closure is passed to is defined
1767        // in another crate.
1768        let Node::Expr(closure_parent) = self.infcx.tcx.parent_hir_node(*body_hir_id) else {
1769            return false;
1770        };
1771        match closure_parent.kind {
1772            ExprKind::MethodCall(method, _, _, _) => self
1773                .infcx
1774                .tcx
1775                .typeck(method.hir_id.owner.def_id)
1776                .type_dependent_def_id(closure_parent.hir_id)
1777                .is_some_and(|def_id| !def_id.is_local()),
1778            ExprKind::Call(func, _) => self
1779                .infcx
1780                .tcx
1781                .typeck(func.hir_id.owner.def_id)
1782                .node_type_opt(func.hir_id)
1783                .and_then(|ty| match ty.kind() {
1784                    ty::FnDef(def_id, _) => Some(def_id),
1785                    _ => None,
1786                })
1787                .is_some_and(|def_id| !def_id.is_local()),
1788            _ => false,
1789        }
1790    }
1791}
1792
1793struct BindingFinder {
1794    span: Span,
1795}
1796
1797impl<'tcx> Visitor<'tcx> for BindingFinder {
1798    type Result = ControlFlow<hir::HirId>;
1799    fn visit_stmt(&mut self, s: &'tcx hir::Stmt<'tcx>) -> Self::Result {
1800        if let hir::StmtKind::Let(local) = s.kind
1801            && local.pat.span == self.span
1802        {
1803            ControlFlow::Break(local.hir_id)
1804        } else {
1805            hir::intravisit::walk_stmt(self, s)
1806        }
1807    }
1808
1809    fn visit_param(&mut self, param: &'tcx hir::Param<'tcx>) -> Self::Result {
1810        if let hir::Pat { kind: hir::PatKind::Ref(_, _, _), span, .. } = param.pat
1811            && *span == self.span
1812        {
1813            ControlFlow::Break(param.hir_id)
1814        } else {
1815            ControlFlow::Continue(())
1816        }
1817    }
1818}
1819
1820fn mut_borrow_of_mutable_ref(local_decl: &LocalDecl<'_>, local_name: Option<Symbol>) -> bool {
1821    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs:1821",
                        "rustc_borrowck::diagnostics::mutability_errors",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs"),
                        ::tracing_core::__macro_support::Option::Some(1821u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_borrowck::diagnostics::mutability_errors"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("local_info: {0:?}, ty.kind(): {1:?}",
                                                    local_decl.local_info, local_decl.ty.kind()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("local_info: {:?}, ty.kind(): {:?}", local_decl.local_info, local_decl.ty.kind());
1822
1823    match *local_decl.local_info() {
1824        // Check if mutably borrowing a mutable reference.
1825        LocalInfo::User(mir::BindingForm::Var(mir::VarBindingForm {
1826            binding_mode: BindingMode(ByRef::No, Mutability::Not),
1827            ..
1828        })) => #[allow(non_exhaustive_omitted_patterns)] match local_decl.ty.kind() {
    ty::Ref(_, _, hir::Mutability::Mut) => true,
    _ => false,
}matches!(local_decl.ty.kind(), ty::Ref(_, _, hir::Mutability::Mut)),
1829        LocalInfo::User(mir::BindingForm::ImplicitSelf(kind)) => {
1830            // Check if the user variable is a `&mut self` and we can therefore
1831            // suggest removing the `&mut`.
1832            //
1833            // Deliberately fall into this case for all implicit self types,
1834            // so that we don't fall into the next case with them.
1835            kind == hir::ImplicitSelfKind::RefMut
1836        }
1837        _ if Some(kw::SelfLower) == local_name => {
1838            // Otherwise, check if the name is the `self` keyword - in which case
1839            // we have an explicit self. Do the same thing in this case and check
1840            // for a `self: &mut Self` to suggest removing the `&mut`.
1841            #[allow(non_exhaustive_omitted_patterns)] match local_decl.ty.kind() {
    ty::Ref(_, _, hir::Mutability::Mut) => true,
    _ => false,
}matches!(local_decl.ty.kind(), ty::Ref(_, _, hir::Mutability::Mut))
1842        }
1843        _ => false,
1844    }
1845}
1846
1847fn suggest_ampmut_self(tcx: TyCtxt<'_>, span: Span) -> (Span, String) {
1848    match tcx.sess.source_map().span_to_snippet(span) {
1849        Ok(snippet) if snippet.ends_with("self") => {
1850            (span.with_hi(span.hi() - BytePos(4)).shrink_to_hi(), "mut ".to_string())
1851        }
1852        _ => (span, "&mut self".to_string()),
1853    }
1854}
1855
1856enum AmpMutSugg {
1857    /// Type suggestion. Changes `&self` to `&mut self`, `x: &T` to `x: &mut T`,
1858    /// `ref x` to `ref mut x`, etc.
1859    Type {
1860        span: Span,
1861        suggestion: String,
1862        additional: Option<(Span, String)>,
1863    },
1864    /// Suggestion for expressions, `&x` to `&mut x`, `&x[i]` to `&mut x[i]`, etc.
1865    Expr {
1866        span: Span,
1867        suggestion: String,
1868    },
1869    /// Suggests `.get_mut` in the case of `&map[&key]` for Hash/BTreeMap.
1870    MapGetMut {
1871        span: Span,
1872        suggestion: String,
1873    },
1874    ChangeBinding,
1875}
1876
1877// When we want to suggest a user change a local variable to be a `&mut`, there
1878// are three potential "obvious" things to highlight:
1879//
1880// let ident [: Type] [= RightHandSideExpression];
1881//     ^^^^^    ^^^^     ^^^^^^^^^^^^^^^^^^^^^^^
1882//     (1.)     (2.)              (3.)
1883//
1884// We can always fallback on highlighting the first. But chances are good that
1885// the user experience will be better if we highlight one of the others if possible;
1886// for example, if the RHS is present and the Type is not, then the type is going to
1887// be inferred *from* the RHS, which means we should highlight that (and suggest
1888// that they borrow the RHS mutably).
1889//
1890// This implementation attempts to emulate AST-borrowck prioritization
1891// by trying (3.), then (2.) and finally falling back on (1.).
1892fn suggest_ampmut<'tcx>(
1893    infcx: &crate::BorrowckInferCtxt<'tcx>,
1894    body: &Body<'tcx>,
1895    opt_assignment_rhs_stmt: Option<&Statement<'tcx>>,
1896) -> Option<AmpMutSugg> {
1897    let tcx = infcx.tcx;
1898    // If there is a RHS and it starts with a `&` from it, then check if it is
1899    // mutable, and if not, put suggest putting `mut ` to make it mutable.
1900    // We don't have to worry about lifetime annotations here because they are
1901    // not valid when taking a reference. For example, the following is not valid Rust:
1902    //
1903    // let x: &i32 = &'a 5;
1904    //                ^^ lifetime annotation not allowed
1905    //
1906    if let Some(rhs_stmt) = opt_assignment_rhs_stmt
1907        && let StatementKind::Assign((lhs, rvalue)) = &rhs_stmt.kind
1908        && let mut rhs_span = rhs_stmt.source_info.span
1909        && let Ok(mut rhs_str) = tcx.sess.source_map().span_to_snippet(rhs_span)
1910    {
1911        let mut rvalue = rvalue;
1912
1913        // Take some special care when handling `let _x = &*_y`:
1914        // We want to know if this is part of an overloaded index, so `let x = &a[0]`,
1915        // or whether this is a usertype ascription (`let _x: &T = y`).
1916        if let Rvalue::Ref(_, BorrowKind::Shared, place) = rvalue
1917            && place.projection.len() == 1
1918            && place.projection[0] == ProjectionElem::Deref
1919            && let Some(assign) = find_assignments(&body, place.local).first()
1920        {
1921            // If this is a usertype ascription (`let _x: &T = _y`) then pierce through it as either we want
1922            // to suggest `&mut` on the expression (handled here) or we return `None` and let the caller
1923            // suggest `&mut` on the type if the expression seems fine (e.g. `let _x: &T = &mut _y`).
1924            if let Some(user_ty_projs) = body.local_decls[lhs.local].user_ty.as_ref()
1925                && let [user_ty_proj] = user_ty_projs.contents.as_slice()
1926                && user_ty_proj.projs.is_empty()
1927                && let Either::Left(rhs_stmt_new) = body.stmt_at(*assign)
1928                && let StatementKind::Assign((_, rvalue_new)) = &rhs_stmt_new.kind
1929                && let rhs_span_new = rhs_stmt_new.source_info.span
1930                && let Ok(rhs_str_new) = tcx.sess.source_map().span_to_snippet(rhs_span_new)
1931            {
1932                (rvalue, rhs_span, rhs_str) = (rvalue_new, rhs_span_new, rhs_str_new);
1933            }
1934
1935            if let Either::Right(call) = body.stmt_at(*assign)
1936                && let TerminatorKind::Call { func: Operand::Constant(const_operand), args, .. } =
1937                    &call.kind
1938                && let ty::FnDef(method_def_id, method_args) = *const_operand.ty().kind()
1939                && let Some(trait_) = tcx.trait_of_assoc(method_def_id)
1940                && tcx.is_lang_item(trait_, LangItem::Index)
1941            {
1942                let trait_ref = ty::TraitRef::from_assoc(
1943                    tcx,
1944                    tcx.require_lang_item(LangItem::IndexMut, rhs_span),
1945                    method_args.no_bound_vars().unwrap(),
1946                );
1947                // The type only implements `Index` but not `IndexMut`, we must not suggest `&mut`.
1948                if !infcx
1949                    .type_implements_trait(trait_ref.def_id, trait_ref.args, infcx.param_env)
1950                    .must_apply_considering_regions()
1951                {
1952                    // Suggest `get_mut` if type is a `BTreeMap` or `HashMap`.
1953                    if let ty::Adt(def, _) = trait_ref.self_ty().kind()
1954                        && [sym::BTreeMap, sym::HashMap]
1955                            .into_iter()
1956                            .any(|s| tcx.is_diagnostic_item(s, def.did()))
1957                        && let [map, key] = &**args
1958                        && let Ok(map) = tcx.sess.source_map().span_to_snippet(map.span)
1959                        && let Ok(key) = tcx.sess.source_map().span_to_snippet(key.span)
1960                    {
1961                        let span = rhs_span;
1962                        let suggestion = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}.get_mut({1}).unwrap()", map,
                key))
    })format!("{map}.get_mut({key}).unwrap()");
1963                        return Some(AmpMutSugg::MapGetMut { span, suggestion });
1964                    }
1965                    return None;
1966                }
1967            }
1968        }
1969
1970        let sugg = match rvalue {
1971            Rvalue::Ref(_, BorrowKind::Shared, _) if let Some(ref_idx) = rhs_str.find('&') => {
1972                // Shrink the span to just after the `&` in `&variable`.
1973                Some((
1974                    rhs_span.with_lo(rhs_span.lo() + BytePos(ref_idx as u32 + 1)).shrink_to_lo(),
1975                    "mut ".to_owned(),
1976                ))
1977            }
1978            Rvalue::RawPtr(RawPtrKind::Const, _) if let Some(const_idx) = rhs_str.find("const") => {
1979                // Suggest changing `&raw const` to `&raw mut` if applicable.
1980                let const_idx = const_idx as u32;
1981                Some((
1982                    rhs_span
1983                        .with_lo(rhs_span.lo() + BytePos(const_idx))
1984                        .with_hi(rhs_span.lo() + BytePos(const_idx + "const".len() as u32)),
1985                    "mut".to_owned(),
1986                ))
1987            }
1988            _ => None,
1989        };
1990
1991        if let Some((span, suggestion)) = sugg {
1992            return Some(AmpMutSugg::Expr { span, suggestion });
1993        }
1994    }
1995
1996    Some(AmpMutSugg::ChangeBinding)
1997}
1998
1999/// If the type is a `Coroutine`, `Closure`, or `CoroutineClosure`
2000fn is_closure_like(ty: Ty<'_>) -> bool {
2001    ty.is_closure() || ty.is_coroutine() || ty.is_coroutine_closure()
2002}
2003
2004/// Given a field that needs to be mutable, returns a span where the " mut " could go.
2005/// This function expects the local to be a reference to a struct in order to produce a span.
2006///
2007/// ```text
2008/// LL |     s: &'a   String
2009///    |           ^^^ returns a span taking up the space here
2010/// ```
2011fn get_mut_span_in_struct_field<'tcx>(
2012    tcx: TyCtxt<'tcx>,
2013    ty: Ty<'tcx>,
2014    field: FieldIdx,
2015) -> Option<Span> {
2016    // Expect our local to be a reference to a struct of some kind.
2017    if let ty::Ref(_, ty, _) = ty.kind()
2018        && let ty::Adt(def, _) = ty.kind()
2019        && let field = def.all_fields().nth(field.index())?
2020        // Now we're dealing with the actual struct that we're going to suggest a change to,
2021        // we can expect a field that is an immutable reference to a type.
2022        && let hir::Node::Field(field) = tcx.hir_node_by_def_id(field.did.as_local()?)
2023        && let hir::TyKind::Ref(lt, hir::MutTy { mutbl: hir::Mutability::Not, ty }) = field.ty.kind
2024    {
2025        return Some(lt.ident.span.between(ty.span));
2026    }
2027
2028    None
2029}
2030
2031/// If possible, suggest replacing `ref` with `ref mut`.
2032fn suggest_ref_mut(tcx: TyCtxt<'_>, span: Span) -> Option<Span> {
2033    let pattern_str = tcx.sess.source_map().span_to_snippet(span).ok()?;
2034    if let Some(rest) = pattern_str.strip_prefix("ref")
2035        && rest.starts_with(rustc_lexer::is_whitespace)
2036    {
2037        let span = span.with_lo(span.lo() + BytePos(4)).shrink_to_lo();
2038        Some(span)
2039    } else {
2040        None
2041    }
2042}