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