]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_lint/src/unused.rs
94a33138107171218c9f600b9b8c6c270e379d70
[rust.git] / compiler / rustc_lint / src / unused.rs
1 use crate::lints::{
2     PathStatementDrop, PathStatementDropSub, PathStatementNoEffect, UnusedAllocationDiag,
3     UnusedAllocationMutDiag, UnusedClosure, UnusedDef, UnusedDelim, UnusedDelimSuggestion,
4     UnusedGenerator, UnusedImportBracesDiag, UnusedOp, UnusedResult,
5 };
6 use crate::Lint;
7 use crate::{EarlyContext, EarlyLintPass, LateContext, LateLintPass, LintContext};
8 use rustc_ast as ast;
9 use rustc_ast::util::{classify, parser};
10 use rustc_ast::{ExprKind, StmtKind};
11 use rustc_errors::{pluralize, MultiSpan};
12 use rustc_hir as hir;
13 use rustc_hir::def::{DefKind, Res};
14 use rustc_hir::def_id::DefId;
15 use rustc_infer::traits::util::elaborate_predicates_with_span;
16 use rustc_middle::ty::adjustment;
17 use rustc_middle::ty::{self, DefIdTree, Ty};
18 use rustc_span::symbol::Symbol;
19 use rustc_span::symbol::{kw, sym};
20 use rustc_span::{BytePos, Span};
21 use std::iter;
22
23 declare_lint! {
24     /// The `unused_must_use` lint detects unused result of a type flagged as
25     /// `#[must_use]`.
26     ///
27     /// ### Example
28     ///
29     /// ```rust
30     /// fn returns_result() -> Result<(), ()> {
31     ///     Ok(())
32     /// }
33     ///
34     /// fn main() {
35     ///     returns_result();
36     /// }
37     /// ```
38     ///
39     /// {{produces}}
40     ///
41     /// ### Explanation
42     ///
43     /// The `#[must_use]` attribute is an indicator that it is a mistake to
44     /// ignore the value. See [the reference] for more details.
45     ///
46     /// [the reference]: https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-attribute
47     pub UNUSED_MUST_USE,
48     Warn,
49     "unused result of a type flagged as `#[must_use]`",
50     report_in_external_macro
51 }
52
53 declare_lint! {
54     /// The `unused_results` lint checks for the unused result of an
55     /// expression in a statement.
56     ///
57     /// ### Example
58     ///
59     /// ```rust,compile_fail
60     /// #![deny(unused_results)]
61     /// fn foo<T>() -> T { panic!() }
62     ///
63     /// fn main() {
64     ///     foo::<usize>();
65     /// }
66     /// ```
67     ///
68     /// {{produces}}
69     ///
70     /// ### Explanation
71     ///
72     /// Ignoring the return value of a function may indicate a mistake. In
73     /// cases were it is almost certain that the result should be used, it is
74     /// recommended to annotate the function with the [`must_use` attribute].
75     /// Failure to use such a return value will trigger the [`unused_must_use`
76     /// lint] which is warn-by-default. The `unused_results` lint is
77     /// essentially the same, but triggers for *all* return values.
78     ///
79     /// This lint is "allow" by default because it can be noisy, and may not be
80     /// an actual problem. For example, calling the `remove` method of a `Vec`
81     /// or `HashMap` returns the previous value, which you may not care about.
82     /// Using this lint would require explicitly ignoring or discarding such
83     /// values.
84     ///
85     /// [`must_use` attribute]: https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-attribute
86     /// [`unused_must_use` lint]: warn-by-default.html#unused-must-use
87     pub UNUSED_RESULTS,
88     Allow,
89     "unused result of an expression in a statement"
90 }
91
92 declare_lint_pass!(UnusedResults => [UNUSED_MUST_USE, UNUSED_RESULTS]);
93
94 impl<'tcx> LateLintPass<'tcx> for UnusedResults {
95     fn check_stmt(&mut self, cx: &LateContext<'_>, s: &hir::Stmt<'_>) {
96         let hir::StmtKind::Semi(expr) = s.kind else { return; };
97
98         if let hir::ExprKind::Ret(..) = expr.kind {
99             return;
100         }
101
102         if let hir::ExprKind::Match(await_expr, _arms, hir::MatchSource::AwaitDesugar) = expr.kind
103             && let ty = cx.typeck_results().expr_ty(&await_expr)
104             && let ty::Alias(ty::Opaque, ty::AliasTy { def_id: future_def_id, .. }) = ty.kind()
105             && cx.tcx.ty_is_opaque_future(ty)
106             // FIXME: This also includes non-async fns that return `impl Future`.
107             && let async_fn_def_id = cx.tcx.parent(*future_def_id)
108             && check_must_use_def(
109                 cx,
110                 async_fn_def_id,
111                 expr.span,
112                 "output of future returned by ",
113                 "",
114             )
115         {
116             // We have a bare `foo().await;` on an opaque type from an async function that was
117             // annotated with `#[must_use]`.
118             return;
119         }
120
121         let ty = cx.typeck_results().expr_ty(&expr);
122
123         let must_use_result = is_ty_must_use(cx, ty, &expr, expr.span);
124         let type_lint_emitted_or_suppressed = match must_use_result {
125             Some(path) => {
126                 emit_must_use_untranslated(cx, &path, "", "", 1);
127                 true
128             }
129             None => false,
130         };
131
132         let fn_warned = check_fn_must_use(cx, expr);
133
134         if !fn_warned && type_lint_emitted_or_suppressed {
135             // We don't warn about unused unit or uninhabited types.
136             // (See https://github.com/rust-lang/rust/issues/43806 for details.)
137             return;
138         }
139
140         let must_use_op = match expr.kind {
141             // Hardcoding operators here seemed more expedient than the
142             // refactoring that would be needed to look up the `#[must_use]`
143             // attribute which does exist on the comparison trait methods
144             hir::ExprKind::Binary(bin_op, ..) => match bin_op.node {
145                 hir::BinOpKind::Eq
146                 | hir::BinOpKind::Lt
147                 | hir::BinOpKind::Le
148                 | hir::BinOpKind::Ne
149                 | hir::BinOpKind::Ge
150                 | hir::BinOpKind::Gt => Some("comparison"),
151                 hir::BinOpKind::Add
152                 | hir::BinOpKind::Sub
153                 | hir::BinOpKind::Div
154                 | hir::BinOpKind::Mul
155                 | hir::BinOpKind::Rem => Some("arithmetic operation"),
156                 hir::BinOpKind::And | hir::BinOpKind::Or => Some("logical operation"),
157                 hir::BinOpKind::BitXor
158                 | hir::BinOpKind::BitAnd
159                 | hir::BinOpKind::BitOr
160                 | hir::BinOpKind::Shl
161                 | hir::BinOpKind::Shr => Some("bitwise operation"),
162             },
163             hir::ExprKind::AddrOf(..) => Some("borrow"),
164             hir::ExprKind::Unary(..) => Some("unary operation"),
165             _ => None,
166         };
167
168         let mut op_warned = false;
169
170         if let Some(must_use_op) = must_use_op {
171             cx.emit_spanned_lint(
172                 UNUSED_MUST_USE,
173                 expr.span,
174                 UnusedOp {
175                     op: must_use_op,
176                     label: expr.span,
177                     suggestion: expr.span.shrink_to_lo(),
178                 },
179             );
180             op_warned = true;
181         }
182
183         if !(type_lint_emitted_or_suppressed || fn_warned || op_warned) {
184             cx.emit_spanned_lint(UNUSED_RESULTS, s.span, UnusedResult { ty });
185         }
186
187         fn check_fn_must_use(cx: &LateContext<'_>, expr: &hir::Expr<'_>) -> bool {
188             let maybe_def_id = match expr.kind {
189                 hir::ExprKind::Call(ref callee, _) => {
190                     match callee.kind {
191                         hir::ExprKind::Path(ref qpath) => {
192                             match cx.qpath_res(qpath, callee.hir_id) {
193                                 Res::Def(DefKind::Fn | DefKind::AssocFn, def_id) => Some(def_id),
194                                 // `Res::Local` if it was a closure, for which we
195                                 // do not currently support must-use linting
196                                 _ => None,
197                             }
198                         }
199                         _ => None,
200                     }
201                 }
202                 hir::ExprKind::MethodCall(..) => {
203                     cx.typeck_results().type_dependent_def_id(expr.hir_id)
204                 }
205                 _ => None,
206             };
207             if let Some(def_id) = maybe_def_id {
208                 check_must_use_def(cx, def_id, expr.span, "return value of ", "")
209             } else {
210                 false
211             }
212         }
213
214         /// A path through a type to a must_use source. Contains useful info for the lint.
215         #[derive(Debug)]
216         enum MustUsePath {
217             /// Suppress must_use checking.
218             Suppressed,
219             /// The root of the normal must_use lint with an optional message.
220             Def(Span, DefId, Option<Symbol>),
221             Boxed(Box<Self>),
222             Opaque(Box<Self>),
223             TraitObject(Box<Self>),
224             TupleElement(Vec<(usize, Self)>),
225             Array(Box<Self>, u64),
226             /// The root of the unused_closures lint.
227             Closure(Span),
228             /// The root of the unused_generators lint.
229             Generator(Span),
230         }
231
232         #[instrument(skip(cx, expr), level = "debug", ret)]
233         fn is_ty_must_use<'tcx>(
234             cx: &LateContext<'tcx>,
235             ty: Ty<'tcx>,
236             expr: &hir::Expr<'_>,
237             span: Span,
238         ) -> Option<MustUsePath> {
239             if ty.is_unit()
240                 || !ty.is_inhabited_from(
241                     cx.tcx,
242                     cx.tcx.parent_module(expr.hir_id).to_def_id(),
243                     cx.param_env,
244                 )
245             {
246                 return Some(MustUsePath::Suppressed);
247             }
248
249             match *ty.kind() {
250                 ty::Adt(..) if ty.is_box() => {
251                     let boxed_ty = ty.boxed_ty();
252                     is_ty_must_use(cx, boxed_ty, expr, span)
253                         .map(|inner| MustUsePath::Boxed(Box::new(inner)))
254                 }
255                 ty::Adt(def, _) => is_def_must_use(cx, def.did(), span),
256                 ty::Alias(ty::Opaque, ty::AliasTy { def_id: def, .. }) => {
257                     elaborate_predicates_with_span(
258                         cx.tcx,
259                         cx.tcx.explicit_item_bounds(def).iter().cloned(),
260                     )
261                     .find_map(|obligation| {
262                         // We only look at the `DefId`, so it is safe to skip the binder here.
263                         if let ty::PredicateKind::Clause(ty::Clause::Trait(
264                             ref poly_trait_predicate,
265                         )) = obligation.predicate.kind().skip_binder()
266                         {
267                             let def_id = poly_trait_predicate.trait_ref.def_id;
268
269                             is_def_must_use(cx, def_id, span)
270                         } else {
271                             None
272                         }
273                     })
274                     .map(|inner| MustUsePath::Opaque(Box::new(inner)))
275                 }
276                 ty::Dynamic(binders, _, _) => binders.iter().find_map(|predicate| {
277                     if let ty::ExistentialPredicate::Trait(ref trait_ref) = predicate.skip_binder()
278                     {
279                         let def_id = trait_ref.def_id;
280                         is_def_must_use(cx, def_id, span)
281                             .map(|inner| MustUsePath::TraitObject(Box::new(inner)))
282                     } else {
283                         None
284                     }
285                 }),
286                 ty::Tuple(tys) => {
287                     let elem_exprs = if let hir::ExprKind::Tup(elem_exprs) = expr.kind {
288                         debug_assert_eq!(elem_exprs.len(), tys.len());
289                         elem_exprs
290                     } else {
291                         &[]
292                     };
293
294                     // Default to `expr`.
295                     let elem_exprs = elem_exprs.iter().chain(iter::repeat(expr));
296
297                     let nested_must_use = tys
298                         .iter()
299                         .zip(elem_exprs)
300                         .enumerate()
301                         .filter_map(|(i, (ty, expr))| {
302                             is_ty_must_use(cx, ty, expr, expr.span).map(|path| (i, path))
303                         })
304                         .collect::<Vec<_>>();
305
306                     if !nested_must_use.is_empty() {
307                         Some(MustUsePath::TupleElement(nested_must_use))
308                     } else {
309                         None
310                     }
311                 }
312                 ty::Array(ty, len) => match len.try_eval_usize(cx.tcx, cx.param_env) {
313                     // If the array is empty we don't lint, to avoid false positives
314                     Some(0) | None => None,
315                     // If the array is definitely non-empty, we can do `#[must_use]` checking.
316                     Some(len) => is_ty_must_use(cx, ty, expr, span)
317                         .map(|inner| MustUsePath::Array(Box::new(inner), len)),
318                 },
319                 ty::Closure(..) => Some(MustUsePath::Closure(span)),
320                 ty::Generator(def_id, ..) => {
321                     // async fn should be treated as "implementor of `Future`"
322                     let must_use = if cx.tcx.generator_is_async(def_id) {
323                         let def_id = cx.tcx.lang_items().future_trait().unwrap();
324                         is_def_must_use(cx, def_id, span)
325                             .map(|inner| MustUsePath::Opaque(Box::new(inner)))
326                     } else {
327                         None
328                     };
329                     must_use.or(Some(MustUsePath::Generator(span)))
330                 }
331                 _ => None,
332             }
333         }
334
335         fn is_def_must_use(cx: &LateContext<'_>, def_id: DefId, span: Span) -> Option<MustUsePath> {
336             if let Some(attr) = cx.tcx.get_attr(def_id, sym::must_use) {
337                 // check for #[must_use = "..."]
338                 let reason = attr.value_str();
339                 Some(MustUsePath::Def(span, def_id, reason))
340             } else {
341                 None
342             }
343         }
344
345         // Returns whether further errors should be suppressed because either a lint has been emitted or the type should be ignored.
346         fn check_must_use_def(
347             cx: &LateContext<'_>,
348             def_id: DefId,
349             span: Span,
350             descr_pre_path: &str,
351             descr_post_path: &str,
352         ) -> bool {
353             is_def_must_use(cx, def_id, span)
354                 .map(|must_use_path| {
355                     emit_must_use_untranslated(
356                         cx,
357                         &must_use_path,
358                         descr_pre_path,
359                         descr_post_path,
360                         1,
361                     )
362                 })
363                 .is_some()
364         }
365
366         #[instrument(skip(cx), level = "debug")]
367         fn emit_must_use_untranslated(
368             cx: &LateContext<'_>,
369             path: &MustUsePath,
370             descr_pre: &str,
371             descr_post: &str,
372             plural_len: usize,
373         ) {
374             let plural_suffix = pluralize!(plural_len);
375
376             match path {
377                 MustUsePath::Suppressed => {}
378                 MustUsePath::Boxed(path) => {
379                     let descr_pre = &format!("{}boxed ", descr_pre);
380                     emit_must_use_untranslated(cx, path, descr_pre, descr_post, plural_len);
381                 }
382                 MustUsePath::Opaque(path) => {
383                     let descr_pre = &format!("{}implementer{} of ", descr_pre, plural_suffix);
384                     emit_must_use_untranslated(cx, path, descr_pre, descr_post, plural_len);
385                 }
386                 MustUsePath::TraitObject(path) => {
387                     let descr_post = &format!(" trait object{}{}", plural_suffix, descr_post);
388                     emit_must_use_untranslated(cx, path, descr_pre, descr_post, plural_len);
389                 }
390                 MustUsePath::TupleElement(elems) => {
391                     for (index, path) in elems {
392                         let descr_post = &format!(" in tuple element {}", index);
393                         emit_must_use_untranslated(cx, path, descr_pre, descr_post, plural_len);
394                     }
395                 }
396                 MustUsePath::Array(path, len) => {
397                     let descr_pre = &format!("{}array{} of ", descr_pre, plural_suffix);
398                     emit_must_use_untranslated(
399                         cx,
400                         path,
401                         descr_pre,
402                         descr_post,
403                         plural_len.saturating_add(usize::try_from(*len).unwrap_or(usize::MAX)),
404                     );
405                 }
406                 MustUsePath::Closure(span) => {
407                     cx.emit_spanned_lint(
408                         UNUSED_MUST_USE,
409                         *span,
410                         UnusedClosure { count: plural_len, pre: descr_pre, post: descr_post },
411                     );
412                 }
413                 MustUsePath::Generator(span) => {
414                     cx.emit_spanned_lint(
415                         UNUSED_MUST_USE,
416                         *span,
417                         UnusedGenerator { count: plural_len, pre: descr_pre, post: descr_post },
418                     );
419                 }
420                 MustUsePath::Def(span, def_id, reason) => {
421                     cx.emit_spanned_lint(
422                         UNUSED_MUST_USE,
423                         *span,
424                         UnusedDef {
425                             pre: descr_pre,
426                             post: descr_post,
427                             cx,
428                             def_id: *def_id,
429                             note: *reason,
430                         },
431                     );
432                 }
433             }
434         }
435     }
436 }
437
438 declare_lint! {
439     /// The `path_statements` lint detects path statements with no effect.
440     ///
441     /// ### Example
442     ///
443     /// ```rust
444     /// let x = 42;
445     ///
446     /// x;
447     /// ```
448     ///
449     /// {{produces}}
450     ///
451     /// ### Explanation
452     ///
453     /// It is usually a mistake to have a statement that has no effect.
454     pub PATH_STATEMENTS,
455     Warn,
456     "path statements with no effect"
457 }
458
459 declare_lint_pass!(PathStatements => [PATH_STATEMENTS]);
460
461 impl<'tcx> LateLintPass<'tcx> for PathStatements {
462     fn check_stmt(&mut self, cx: &LateContext<'_>, s: &hir::Stmt<'_>) {
463         if let hir::StmtKind::Semi(expr) = s.kind {
464             if let hir::ExprKind::Path(_) = expr.kind {
465                 let ty = cx.typeck_results().expr_ty(expr);
466                 if ty.needs_drop(cx.tcx, cx.param_env) {
467                     let sub = if let Ok(snippet) = cx.sess().source_map().span_to_snippet(expr.span)
468                     {
469                         PathStatementDropSub::Suggestion { span: s.span, snippet }
470                     } else {
471                         PathStatementDropSub::Help { span: s.span }
472                     };
473                     cx.emit_spanned_lint(PATH_STATEMENTS, s.span, PathStatementDrop { sub })
474                 } else {
475                     cx.emit_spanned_lint(PATH_STATEMENTS, s.span, PathStatementNoEffect);
476                 }
477             }
478         }
479     }
480 }
481
482 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
483 enum UnusedDelimsCtx {
484     FunctionArg,
485     MethodArg,
486     AssignedValue,
487     AssignedValueLetElse,
488     IfCond,
489     WhileCond,
490     ForIterExpr,
491     MatchScrutineeExpr,
492     ReturnValue,
493     BlockRetValue,
494     LetScrutineeExpr,
495     ArrayLenExpr,
496     AnonConst,
497     MatchArmExpr,
498 }
499
500 impl From<UnusedDelimsCtx> for &'static str {
501     fn from(ctx: UnusedDelimsCtx) -> &'static str {
502         match ctx {
503             UnusedDelimsCtx::FunctionArg => "function argument",
504             UnusedDelimsCtx::MethodArg => "method argument",
505             UnusedDelimsCtx::AssignedValue | UnusedDelimsCtx::AssignedValueLetElse => {
506                 "assigned value"
507             }
508             UnusedDelimsCtx::IfCond => "`if` condition",
509             UnusedDelimsCtx::WhileCond => "`while` condition",
510             UnusedDelimsCtx::ForIterExpr => "`for` iterator expression",
511             UnusedDelimsCtx::MatchScrutineeExpr => "`match` scrutinee expression",
512             UnusedDelimsCtx::ReturnValue => "`return` value",
513             UnusedDelimsCtx::BlockRetValue => "block return value",
514             UnusedDelimsCtx::LetScrutineeExpr => "`let` scrutinee expression",
515             UnusedDelimsCtx::ArrayLenExpr | UnusedDelimsCtx::AnonConst => "const expression",
516             UnusedDelimsCtx::MatchArmExpr => "match arm expression",
517         }
518     }
519 }
520
521 /// Used by both `UnusedParens` and `UnusedBraces` to prevent code duplication.
522 trait UnusedDelimLint {
523     const DELIM_STR: &'static str;
524
525     /// Due to `ref` pattern, there can be a difference between using
526     /// `{ expr }` and `expr` in pattern-matching contexts. This means
527     /// that we should only lint `unused_parens` and not `unused_braces`
528     /// in this case.
529     ///
530     /// ```rust
531     /// let mut a = 7;
532     /// let ref b = { a }; // We actually borrow a copy of `a` here.
533     /// a += 1; // By mutating `a` we invalidate any borrows of `a`.
534     /// assert_eq!(b + 1, a); // `b` does not borrow `a`, so we can still use it here.
535     /// ```
536     const LINT_EXPR_IN_PATTERN_MATCHING_CTX: bool;
537
538     // this cannot be a constant is it refers to a static.
539     fn lint(&self) -> &'static Lint;
540
541     fn check_unused_delims_expr(
542         &self,
543         cx: &EarlyContext<'_>,
544         value: &ast::Expr,
545         ctx: UnusedDelimsCtx,
546         followed_by_block: bool,
547         left_pos: Option<BytePos>,
548         right_pos: Option<BytePos>,
549     );
550
551     fn is_expr_delims_necessary(
552         inner: &ast::Expr,
553         followed_by_block: bool,
554         followed_by_else: bool,
555     ) -> bool {
556         if followed_by_else {
557             match inner.kind {
558                 ast::ExprKind::Binary(op, ..) if op.node.lazy() => return true,
559                 _ if classify::expr_trailing_brace(inner).is_some() => return true,
560                 _ => {}
561             }
562         }
563
564         // Prevent false-positives in cases like `fn x() -> u8 { ({ 0 } + 1) }`
565         let lhs_needs_parens = {
566             let mut innermost = inner;
567             loop {
568                 innermost = match &innermost.kind {
569                     ExprKind::Binary(_, lhs, _rhs) => lhs,
570                     ExprKind::Call(fn_, _params) => fn_,
571                     ExprKind::Cast(expr, _ty) => expr,
572                     ExprKind::Type(expr, _ty) => expr,
573                     ExprKind::Index(base, _subscript) => base,
574                     _ => break false,
575                 };
576                 if !classify::expr_requires_semi_to_be_stmt(innermost) {
577                     break true;
578                 }
579             }
580         };
581
582         lhs_needs_parens
583             || (followed_by_block
584                 && match &inner.kind {
585                     ExprKind::Ret(_)
586                     | ExprKind::Break(..)
587                     | ExprKind::Yield(..)
588                     | ExprKind::Yeet(..) => true,
589                     ExprKind::Range(_lhs, Some(rhs), _limits) => {
590                         matches!(rhs.kind, ExprKind::Block(..))
591                     }
592                     _ => parser::contains_exterior_struct_lit(&inner),
593                 })
594     }
595
596     fn emit_unused_delims_expr(
597         &self,
598         cx: &EarlyContext<'_>,
599         value: &ast::Expr,
600         ctx: UnusedDelimsCtx,
601         left_pos: Option<BytePos>,
602         right_pos: Option<BytePos>,
603     ) {
604         // If `value` has `ExprKind::Err`, unused delim lint can be broken.
605         // For example, the following code caused ICE.
606         // This is because the `ExprKind::Call` in `value` has `ExprKind::Err` as its argument
607         // and this leads to wrong spans. #104897
608         //
609         // ```
610         // fn f(){(print!(á
611         // ```
612         use rustc_ast::visit::{walk_expr, Visitor};
613         struct ErrExprVisitor {
614             has_error: bool,
615         }
616         impl<'ast> Visitor<'ast> for ErrExprVisitor {
617             fn visit_expr(&mut self, expr: &'ast ast::Expr) {
618                 if let ExprKind::Err = expr.kind {
619                     self.has_error = true;
620                     return;
621                 }
622                 walk_expr(self, expr)
623             }
624         }
625         let mut visitor = ErrExprVisitor { has_error: false };
626         visitor.visit_expr(value);
627         if visitor.has_error {
628             return;
629         }
630         let spans = match value.kind {
631             ast::ExprKind::Block(ref block, None) if block.stmts.len() == 1 => {
632                 if let Some(span) = block.stmts[0].span.find_ancestor_inside(value.span) {
633                     Some((value.span.with_hi(span.lo()), value.span.with_lo(span.hi())))
634                 } else {
635                     None
636                 }
637             }
638             ast::ExprKind::Paren(ref expr) => {
639                 let expr_span = expr.span.find_ancestor_inside(value.span);
640                 if let Some(expr_span) = expr_span {
641                     Some((value.span.with_hi(expr_span.lo()), value.span.with_lo(expr_span.hi())))
642                 } else {
643                     None
644                 }
645             }
646             _ => return,
647         };
648         let keep_space = (
649             left_pos.map_or(false, |s| s >= value.span.lo()),
650             right_pos.map_or(false, |s| s <= value.span.hi()),
651         );
652         self.emit_unused_delims(cx, value.span, spans, ctx.into(), keep_space);
653     }
654
655     fn emit_unused_delims(
656         &self,
657         cx: &EarlyContext<'_>,
658         value_span: Span,
659         spans: Option<(Span, Span)>,
660         msg: &str,
661         keep_space: (bool, bool),
662     ) {
663         let primary_span = if let Some((lo, hi)) = spans {
664             MultiSpan::from(vec![lo, hi])
665         } else {
666             MultiSpan::from(value_span)
667         };
668         let suggestion = spans.map(|(lo, hi)| {
669             let sm = cx.sess().source_map();
670             let lo_replace =
671                     if keep_space.0 &&
672                         let Ok(snip) = sm.span_to_prev_source(lo) && !snip.ends_with(' ') {
673                         " "
674                         } else {
675                             ""
676                         };
677
678             let hi_replace =
679                     if keep_space.1 &&
680                         let Ok(snip) = sm.span_to_next_source(hi) && !snip.starts_with(' ') {
681                         " "
682                         } else {
683                             ""
684                         };
685             UnusedDelimSuggestion {
686                 start_span: lo,
687                 start_replace: lo_replace,
688                 end_span: hi,
689                 end_replace: hi_replace,
690             }
691         });
692         cx.emit_spanned_lint(
693             self.lint(),
694             primary_span,
695             UnusedDelim { delim: Self::DELIM_STR, item: msg, suggestion },
696         );
697     }
698
699     fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &ast::Expr) {
700         use rustc_ast::ExprKind::*;
701         let (value, ctx, followed_by_block, left_pos, right_pos) = match e.kind {
702             // Do not lint `unused_braces` in `if let` expressions.
703             If(ref cond, ref block, _)
704                 if !matches!(cond.kind, Let(_, _, _))
705                     || Self::LINT_EXPR_IN_PATTERN_MATCHING_CTX =>
706             {
707                 let left = e.span.lo() + rustc_span::BytePos(2);
708                 let right = block.span.lo();
709                 (cond, UnusedDelimsCtx::IfCond, true, Some(left), Some(right))
710             }
711
712             // Do not lint `unused_braces` in `while let` expressions.
713             While(ref cond, ref block, ..)
714                 if !matches!(cond.kind, Let(_, _, _))
715                     || Self::LINT_EXPR_IN_PATTERN_MATCHING_CTX =>
716             {
717                 let left = e.span.lo() + rustc_span::BytePos(5);
718                 let right = block.span.lo();
719                 (cond, UnusedDelimsCtx::WhileCond, true, Some(left), Some(right))
720             }
721
722             ForLoop(_, ref cond, ref block, ..) => {
723                 (cond, UnusedDelimsCtx::ForIterExpr, true, None, Some(block.span.lo()))
724             }
725
726             Match(ref head, _) if Self::LINT_EXPR_IN_PATTERN_MATCHING_CTX => {
727                 let left = e.span.lo() + rustc_span::BytePos(5);
728                 (head, UnusedDelimsCtx::MatchScrutineeExpr, true, Some(left), None)
729             }
730
731             Ret(Some(ref value)) => {
732                 let left = e.span.lo() + rustc_span::BytePos(3);
733                 (value, UnusedDelimsCtx::ReturnValue, false, Some(left), None)
734             }
735
736             Assign(_, ref value, _) | AssignOp(.., ref value) => {
737                 (value, UnusedDelimsCtx::AssignedValue, false, None, None)
738             }
739             // either function/method call, or something this lint doesn't care about
740             ref call_or_other => {
741                 let (args_to_check, ctx) = match *call_or_other {
742                     Call(_, ref args) => (&args[..], UnusedDelimsCtx::FunctionArg),
743                     MethodCall(ref call) => (&call.args[..], UnusedDelimsCtx::MethodArg),
744                     // actual catch-all arm
745                     _ => {
746                         return;
747                     }
748                 };
749                 // Don't lint if this is a nested macro expansion: otherwise, the lint could
750                 // trigger in situations that macro authors shouldn't have to care about, e.g.,
751                 // when a parenthesized token tree matched in one macro expansion is matched as
752                 // an expression in another and used as a fn/method argument (Issue #47775)
753                 if e.span.ctxt().outer_expn_data().call_site.from_expansion() {
754                     return;
755                 }
756                 for arg in args_to_check {
757                     self.check_unused_delims_expr(cx, arg, ctx, false, None, None);
758                 }
759                 return;
760             }
761         };
762         self.check_unused_delims_expr(cx, &value, ctx, followed_by_block, left_pos, right_pos);
763     }
764
765     fn check_stmt(&mut self, cx: &EarlyContext<'_>, s: &ast::Stmt) {
766         match s.kind {
767             StmtKind::Local(ref local) if Self::LINT_EXPR_IN_PATTERN_MATCHING_CTX => {
768                 if let Some((init, els)) = local.kind.init_else_opt() {
769                     let ctx = match els {
770                         None => UnusedDelimsCtx::AssignedValue,
771                         Some(_) => UnusedDelimsCtx::AssignedValueLetElse,
772                     };
773                     self.check_unused_delims_expr(cx, init, ctx, false, None, None);
774                 }
775             }
776             StmtKind::Expr(ref expr) => {
777                 self.check_unused_delims_expr(
778                     cx,
779                     &expr,
780                     UnusedDelimsCtx::BlockRetValue,
781                     false,
782                     None,
783                     None,
784                 );
785             }
786             _ => {}
787         }
788     }
789
790     fn check_item(&mut self, cx: &EarlyContext<'_>, item: &ast::Item) {
791         use ast::ItemKind::*;
792
793         if let Const(.., Some(expr)) | Static(.., Some(expr)) = &item.kind {
794             self.check_unused_delims_expr(
795                 cx,
796                 expr,
797                 UnusedDelimsCtx::AssignedValue,
798                 false,
799                 None,
800                 None,
801             );
802         }
803     }
804 }
805
806 declare_lint! {
807     /// The `unused_parens` lint detects `if`, `match`, `while` and `return`
808     /// with parentheses; they do not need them.
809     ///
810     /// ### Examples
811     ///
812     /// ```rust
813     /// if(true) {}
814     /// ```
815     ///
816     /// {{produces}}
817     ///
818     /// ### Explanation
819     ///
820     /// The parentheses are not needed, and should be removed. This is the
821     /// preferred style for writing these expressions.
822     pub(super) UNUSED_PARENS,
823     Warn,
824     "`if`, `match`, `while` and `return` do not need parentheses"
825 }
826
827 declare_lint_pass!(UnusedParens => [UNUSED_PARENS]);
828
829 impl UnusedDelimLint for UnusedParens {
830     const DELIM_STR: &'static str = "parentheses";
831
832     const LINT_EXPR_IN_PATTERN_MATCHING_CTX: bool = true;
833
834     fn lint(&self) -> &'static Lint {
835         UNUSED_PARENS
836     }
837
838     fn check_unused_delims_expr(
839         &self,
840         cx: &EarlyContext<'_>,
841         value: &ast::Expr,
842         ctx: UnusedDelimsCtx,
843         followed_by_block: bool,
844         left_pos: Option<BytePos>,
845         right_pos: Option<BytePos>,
846     ) {
847         match value.kind {
848             ast::ExprKind::Paren(ref inner) => {
849                 let followed_by_else = ctx == UnusedDelimsCtx::AssignedValueLetElse;
850                 if !Self::is_expr_delims_necessary(inner, followed_by_block, followed_by_else)
851                     && value.attrs.is_empty()
852                     && !value.span.from_expansion()
853                     && (ctx != UnusedDelimsCtx::LetScrutineeExpr
854                         || !matches!(inner.kind, ast::ExprKind::Binary(
855                                 rustc_span::source_map::Spanned { node, .. },
856                                 _,
857                                 _,
858                             ) if node.lazy()))
859                 {
860                     self.emit_unused_delims_expr(cx, value, ctx, left_pos, right_pos)
861                 }
862             }
863             ast::ExprKind::Let(_, ref expr, _) => {
864                 self.check_unused_delims_expr(
865                     cx,
866                     expr,
867                     UnusedDelimsCtx::LetScrutineeExpr,
868                     followed_by_block,
869                     None,
870                     None,
871                 );
872             }
873             _ => {}
874         }
875     }
876 }
877
878 impl UnusedParens {
879     fn check_unused_parens_pat(
880         &self,
881         cx: &EarlyContext<'_>,
882         value: &ast::Pat,
883         avoid_or: bool,
884         avoid_mut: bool,
885         keep_space: (bool, bool),
886     ) {
887         use ast::{BindingAnnotation, PatKind};
888
889         if let PatKind::Paren(inner) = &value.kind {
890             match inner.kind {
891                 // The lint visitor will visit each subpattern of `p`. We do not want to lint
892                 // any range pattern no matter where it occurs in the pattern. For something like
893                 // `&(a..=b)`, there is a recursive `check_pat` on `a` and `b`, but we will assume
894                 // that if there are unnecessary parens they serve a purpose of readability.
895                 PatKind::Range(..) => return,
896                 // Avoid `p0 | .. | pn` if we should.
897                 PatKind::Or(..) if avoid_or => return,
898                 // Avoid `mut x` and `mut x @ p` if we should:
899                 PatKind::Ident(BindingAnnotation::MUT, ..) if avoid_mut => {
900                     return;
901                 }
902                 // Otherwise proceed with linting.
903                 _ => {}
904             }
905             let spans = if let Some(inner) = inner.span.find_ancestor_inside(value.span) {
906                 Some((value.span.with_hi(inner.lo()), value.span.with_lo(inner.hi())))
907             } else {
908                 None
909             };
910             self.emit_unused_delims(cx, value.span, spans, "pattern", keep_space);
911         }
912     }
913 }
914
915 impl EarlyLintPass for UnusedParens {
916     #[inline]
917     fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &ast::Expr) {
918         match e.kind {
919             ExprKind::Let(ref pat, _, _) | ExprKind::ForLoop(ref pat, ..) => {
920                 self.check_unused_parens_pat(cx, pat, false, false, (true, true));
921             }
922             // We ignore parens in cases like `if (((let Some(0) = Some(1))))` because we already
923             // handle a hard error for them during AST lowering in `lower_expr_mut`, but we still
924             // want to complain about things like `if let 42 = (42)`.
925             ExprKind::If(ref cond, ref block, ref else_)
926                 if matches!(cond.peel_parens().kind, ExprKind::Let(..)) =>
927             {
928                 self.check_unused_delims_expr(
929                     cx,
930                     cond.peel_parens(),
931                     UnusedDelimsCtx::LetScrutineeExpr,
932                     true,
933                     None,
934                     None,
935                 );
936                 for stmt in &block.stmts {
937                     <Self as UnusedDelimLint>::check_stmt(self, cx, stmt);
938                 }
939                 if let Some(e) = else_ {
940                     <Self as UnusedDelimLint>::check_expr(self, cx, e);
941                 }
942                 return;
943             }
944             ExprKind::Match(ref _expr, ref arm) => {
945                 for a in arm {
946                     self.check_unused_delims_expr(
947                         cx,
948                         &a.body,
949                         UnusedDelimsCtx::MatchArmExpr,
950                         false,
951                         None,
952                         None,
953                     );
954                 }
955             }
956             _ => {}
957         }
958
959         <Self as UnusedDelimLint>::check_expr(self, cx, e)
960     }
961
962     fn check_pat(&mut self, cx: &EarlyContext<'_>, p: &ast::Pat) {
963         use ast::{Mutability, PatKind::*};
964         let keep_space = (false, false);
965         match &p.kind {
966             // Do not lint on `(..)` as that will result in the other arms being useless.
967             Paren(_)
968             // The other cases do not contain sub-patterns.
969             | Wild | Rest | Lit(..) | MacCall(..) | Range(..) | Ident(.., None) | Path(..) => {},
970             // These are list-like patterns; parens can always be removed.
971             TupleStruct(_, _, ps) | Tuple(ps) | Slice(ps) | Or(ps) => for p in ps {
972                 self.check_unused_parens_pat(cx, p, false, false, keep_space);
973             },
974             Struct(_, _, fps, _) => for f in fps {
975                 self.check_unused_parens_pat(cx, &f.pat, false, false, keep_space);
976             },
977             // Avoid linting on `i @ (p0 | .. | pn)` and `box (p0 | .. | pn)`, #64106.
978             Ident(.., Some(p)) | Box(p) => self.check_unused_parens_pat(cx, p, true, false, keep_space),
979             // Avoid linting on `&(mut x)` as `&mut x` has a different meaning, #55342.
980             // Also avoid linting on `& mut? (p0 | .. | pn)`, #64106.
981             Ref(p, m) => self.check_unused_parens_pat(cx, p, true, *m == Mutability::Not, keep_space),
982         }
983     }
984
985     fn check_stmt(&mut self, cx: &EarlyContext<'_>, s: &ast::Stmt) {
986         if let StmtKind::Local(ref local) = s.kind {
987             self.check_unused_parens_pat(cx, &local.pat, true, false, (false, false));
988         }
989
990         <Self as UnusedDelimLint>::check_stmt(self, cx, s)
991     }
992
993     fn check_param(&mut self, cx: &EarlyContext<'_>, param: &ast::Param) {
994         self.check_unused_parens_pat(cx, &param.pat, true, false, (false, false));
995     }
996
997     fn check_arm(&mut self, cx: &EarlyContext<'_>, arm: &ast::Arm) {
998         self.check_unused_parens_pat(cx, &arm.pat, false, false, (false, false));
999     }
1000
1001     fn check_ty(&mut self, cx: &EarlyContext<'_>, ty: &ast::Ty) {
1002         if let ast::TyKind::Paren(r) = &ty.kind {
1003             match &r.kind {
1004                 ast::TyKind::TraitObject(..) => {}
1005                 ast::TyKind::ImplTrait(_, bounds) if bounds.len() > 1 => {}
1006                 ast::TyKind::Array(_, len) => {
1007                     self.check_unused_delims_expr(
1008                         cx,
1009                         &len.value,
1010                         UnusedDelimsCtx::ArrayLenExpr,
1011                         false,
1012                         None,
1013                         None,
1014                     );
1015                 }
1016                 _ => {
1017                     let spans = if let Some(r) = r.span.find_ancestor_inside(ty.span) {
1018                         Some((ty.span.with_hi(r.lo()), ty.span.with_lo(r.hi())))
1019                     } else {
1020                         None
1021                     };
1022                     self.emit_unused_delims(cx, ty.span, spans, "type", (false, false));
1023                 }
1024             }
1025         }
1026     }
1027
1028     fn check_item(&mut self, cx: &EarlyContext<'_>, item: &ast::Item) {
1029         <Self as UnusedDelimLint>::check_item(self, cx, item)
1030     }
1031 }
1032
1033 declare_lint! {
1034     /// The `unused_braces` lint detects unnecessary braces around an
1035     /// expression.
1036     ///
1037     /// ### Example
1038     ///
1039     /// ```rust
1040     /// if { true } {
1041     ///     // ...
1042     /// }
1043     /// ```
1044     ///
1045     /// {{produces}}
1046     ///
1047     /// ### Explanation
1048     ///
1049     /// The braces are not needed, and should be removed. This is the
1050     /// preferred style for writing these expressions.
1051     pub(super) UNUSED_BRACES,
1052     Warn,
1053     "unnecessary braces around an expression"
1054 }
1055
1056 declare_lint_pass!(UnusedBraces => [UNUSED_BRACES]);
1057
1058 impl UnusedDelimLint for UnusedBraces {
1059     const DELIM_STR: &'static str = "braces";
1060
1061     const LINT_EXPR_IN_PATTERN_MATCHING_CTX: bool = false;
1062
1063     fn lint(&self) -> &'static Lint {
1064         UNUSED_BRACES
1065     }
1066
1067     fn check_unused_delims_expr(
1068         &self,
1069         cx: &EarlyContext<'_>,
1070         value: &ast::Expr,
1071         ctx: UnusedDelimsCtx,
1072         followed_by_block: bool,
1073         left_pos: Option<BytePos>,
1074         right_pos: Option<BytePos>,
1075     ) {
1076         match value.kind {
1077             ast::ExprKind::Block(ref inner, None)
1078                 if inner.rules == ast::BlockCheckMode::Default =>
1079             {
1080                 // emit a warning under the following conditions:
1081                 //
1082                 // - the block does not have a label
1083                 // - the block is not `unsafe`
1084                 // - the block contains exactly one expression (do not lint `{ expr; }`)
1085                 // - `followed_by_block` is true and the internal expr may contain a `{`
1086                 // - the block is not multiline (do not lint multiline match arms)
1087                 //      ```
1088                 //      match expr {
1089                 //          Pattern => {
1090                 //              somewhat_long_expression
1091                 //          }
1092                 //          // ...
1093                 //      }
1094                 //      ```
1095                 // - the block has no attribute and was not created inside a macro
1096                 // - if the block is an `anon_const`, the inner expr must be a literal
1097                 //      (do not lint `struct A<const N: usize>; let _: A<{ 2 + 3 }>;`)
1098                 //
1099                 // FIXME(const_generics): handle paths when #67075 is fixed.
1100                 if let [stmt] = inner.stmts.as_slice() {
1101                     if let ast::StmtKind::Expr(ref expr) = stmt.kind {
1102                         if !Self::is_expr_delims_necessary(expr, followed_by_block, false)
1103                             && (ctx != UnusedDelimsCtx::AnonConst
1104                                 || matches!(expr.kind, ast::ExprKind::Lit(_)))
1105                             && !cx.sess().source_map().is_multiline(value.span)
1106                             && value.attrs.is_empty()
1107                             && !value.span.from_expansion()
1108                             && !inner.span.from_expansion()
1109                         {
1110                             self.emit_unused_delims_expr(cx, value, ctx, left_pos, right_pos)
1111                         }
1112                     }
1113                 }
1114             }
1115             ast::ExprKind::Let(_, ref expr, _) => {
1116                 self.check_unused_delims_expr(
1117                     cx,
1118                     expr,
1119                     UnusedDelimsCtx::LetScrutineeExpr,
1120                     followed_by_block,
1121                     None,
1122                     None,
1123                 );
1124             }
1125             _ => {}
1126         }
1127     }
1128 }
1129
1130 impl EarlyLintPass for UnusedBraces {
1131     fn check_stmt(&mut self, cx: &EarlyContext<'_>, s: &ast::Stmt) {
1132         <Self as UnusedDelimLint>::check_stmt(self, cx, s)
1133     }
1134
1135     #[inline]
1136     fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &ast::Expr) {
1137         <Self as UnusedDelimLint>::check_expr(self, cx, e);
1138
1139         if let ExprKind::Repeat(_, ref anon_const) = e.kind {
1140             self.check_unused_delims_expr(
1141                 cx,
1142                 &anon_const.value,
1143                 UnusedDelimsCtx::AnonConst,
1144                 false,
1145                 None,
1146                 None,
1147             );
1148         }
1149     }
1150
1151     fn check_generic_arg(&mut self, cx: &EarlyContext<'_>, arg: &ast::GenericArg) {
1152         if let ast::GenericArg::Const(ct) = arg {
1153             self.check_unused_delims_expr(
1154                 cx,
1155                 &ct.value,
1156                 UnusedDelimsCtx::AnonConst,
1157                 false,
1158                 None,
1159                 None,
1160             );
1161         }
1162     }
1163
1164     fn check_variant(&mut self, cx: &EarlyContext<'_>, v: &ast::Variant) {
1165         if let Some(anon_const) = &v.disr_expr {
1166             self.check_unused_delims_expr(
1167                 cx,
1168                 &anon_const.value,
1169                 UnusedDelimsCtx::AnonConst,
1170                 false,
1171                 None,
1172                 None,
1173             );
1174         }
1175     }
1176
1177     fn check_ty(&mut self, cx: &EarlyContext<'_>, ty: &ast::Ty) {
1178         match ty.kind {
1179             ast::TyKind::Array(_, ref len) => {
1180                 self.check_unused_delims_expr(
1181                     cx,
1182                     &len.value,
1183                     UnusedDelimsCtx::ArrayLenExpr,
1184                     false,
1185                     None,
1186                     None,
1187                 );
1188             }
1189
1190             ast::TyKind::Typeof(ref anon_const) => {
1191                 self.check_unused_delims_expr(
1192                     cx,
1193                     &anon_const.value,
1194                     UnusedDelimsCtx::AnonConst,
1195                     false,
1196                     None,
1197                     None,
1198                 );
1199             }
1200
1201             _ => {}
1202         }
1203     }
1204
1205     fn check_item(&mut self, cx: &EarlyContext<'_>, item: &ast::Item) {
1206         <Self as UnusedDelimLint>::check_item(self, cx, item)
1207     }
1208 }
1209
1210 declare_lint! {
1211     /// The `unused_import_braces` lint catches unnecessary braces around an
1212     /// imported item.
1213     ///
1214     /// ### Example
1215     ///
1216     /// ```rust,compile_fail
1217     /// #![deny(unused_import_braces)]
1218     /// use test::{A};
1219     ///
1220     /// pub mod test {
1221     ///     pub struct A;
1222     /// }
1223     /// # fn main() {}
1224     /// ```
1225     ///
1226     /// {{produces}}
1227     ///
1228     /// ### Explanation
1229     ///
1230     /// If there is only a single item, then remove the braces (`use test::A;`
1231     /// for example).
1232     ///
1233     /// This lint is "allow" by default because it is only enforcing a
1234     /// stylistic choice.
1235     UNUSED_IMPORT_BRACES,
1236     Allow,
1237     "unnecessary braces around an imported item"
1238 }
1239
1240 declare_lint_pass!(UnusedImportBraces => [UNUSED_IMPORT_BRACES]);
1241
1242 impl UnusedImportBraces {
1243     fn check_use_tree(&self, cx: &EarlyContext<'_>, use_tree: &ast::UseTree, item: &ast::Item) {
1244         if let ast::UseTreeKind::Nested(ref items) = use_tree.kind {
1245             // Recursively check nested UseTrees
1246             for (tree, _) in items {
1247                 self.check_use_tree(cx, tree, item);
1248             }
1249
1250             // Trigger the lint only if there is one nested item
1251             if items.len() != 1 {
1252                 return;
1253             }
1254
1255             // Trigger the lint if the nested item is a non-self single item
1256             let node_name = match items[0].0.kind {
1257                 ast::UseTreeKind::Simple(rename) => {
1258                     let orig_ident = items[0].0.prefix.segments.last().unwrap().ident;
1259                     if orig_ident.name == kw::SelfLower {
1260                         return;
1261                     }
1262                     rename.unwrap_or(orig_ident).name
1263                 }
1264                 ast::UseTreeKind::Glob => Symbol::intern("*"),
1265                 ast::UseTreeKind::Nested(_) => return,
1266             };
1267
1268             cx.emit_spanned_lint(
1269                 UNUSED_IMPORT_BRACES,
1270                 item.span,
1271                 UnusedImportBracesDiag { node: node_name },
1272             );
1273         }
1274     }
1275 }
1276
1277 impl EarlyLintPass for UnusedImportBraces {
1278     fn check_item(&mut self, cx: &EarlyContext<'_>, item: &ast::Item) {
1279         if let ast::ItemKind::Use(ref use_tree) = item.kind {
1280             self.check_use_tree(cx, use_tree, item);
1281         }
1282     }
1283 }
1284
1285 declare_lint! {
1286     /// The `unused_allocation` lint detects unnecessary allocations that can
1287     /// be eliminated.
1288     ///
1289     /// ### Example
1290     ///
1291     /// ```rust
1292     /// #![feature(box_syntax)]
1293     /// fn main() {
1294     ///     let a = (box [1, 2, 3]).len();
1295     /// }
1296     /// ```
1297     ///
1298     /// {{produces}}
1299     ///
1300     /// ### Explanation
1301     ///
1302     /// When a `box` expression is immediately coerced to a reference, then
1303     /// the allocation is unnecessary, and a reference (using `&` or `&mut`)
1304     /// should be used instead to avoid the allocation.
1305     pub(super) UNUSED_ALLOCATION,
1306     Warn,
1307     "detects unnecessary allocations that can be eliminated"
1308 }
1309
1310 declare_lint_pass!(UnusedAllocation => [UNUSED_ALLOCATION]);
1311
1312 impl<'tcx> LateLintPass<'tcx> for UnusedAllocation {
1313     fn check_expr(&mut self, cx: &LateContext<'_>, e: &hir::Expr<'_>) {
1314         match e.kind {
1315             hir::ExprKind::Box(_) => {}
1316             _ => return,
1317         }
1318
1319         for adj in cx.typeck_results().expr_adjustments(e) {
1320             if let adjustment::Adjust::Borrow(adjustment::AutoBorrow::Ref(_, m)) = adj.kind {
1321                 match m {
1322                     adjustment::AutoBorrowMutability::Not => {
1323                         cx.emit_spanned_lint(UNUSED_ALLOCATION, e.span, UnusedAllocationDiag);
1324                     }
1325                     adjustment::AutoBorrowMutability::Mut { .. } => {
1326                         cx.emit_spanned_lint(UNUSED_ALLOCATION, e.span, UnusedAllocationMutDiag);
1327                     }
1328                 };
1329             }
1330         }
1331     }
1332 }