]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/functions.rs
Rollup merge of #5869 - wiomoc:feature/implicit-self, r=ebroto,flip1995
[rust.git] / clippy_lints / src / functions.rs
1 use crate::utils::{
2     attr_by_name, attrs::is_proc_macro, is_must_use_ty, is_trait_impl_item, iter_input_pats, match_def_path,
3     must_use_attr, qpath_res, return_ty, snippet, snippet_opt, span_lint, span_lint_and_help, span_lint_and_then,
4     trait_ref_of_method, type_is_unsafe_function,
5 };
6 use rustc_ast::ast::Attribute;
7 use rustc_data_structures::fx::FxHashSet;
8 use rustc_errors::Applicability;
9 use rustc_hir as hir;
10 use rustc_hir::intravisit;
11 use rustc_hir::{def::Res, def_id::DefId};
12 use rustc_lint::{LateContext, LateLintPass, LintContext};
13 use rustc_middle::hir::map::Map;
14 use rustc_middle::lint::in_external_macro;
15 use rustc_middle::ty::{self, Ty};
16 use rustc_session::{declare_tool_lint, impl_lint_pass};
17 use rustc_span::source_map::Span;
18 use rustc_target::spec::abi::Abi;
19
20 declare_clippy_lint! {
21     /// **What it does:** Checks for functions with too many parameters.
22     ///
23     /// **Why is this bad?** Functions with lots of parameters are considered bad
24     /// style and reduce readability (“what does the 5th parameter mean?”). Consider
25     /// grouping some parameters into a new type.
26     ///
27     /// **Known problems:** None.
28     ///
29     /// **Example:**
30     /// ```rust
31     /// # struct Color;
32     /// fn foo(x: u32, y: u32, name: &str, c: Color, w: f32, h: f32, a: f32, b: f32) {
33     ///     // ..
34     /// }
35     /// ```
36     pub TOO_MANY_ARGUMENTS,
37     complexity,
38     "functions with too many arguments"
39 }
40
41 declare_clippy_lint! {
42     /// **What it does:** Checks for functions with a large amount of lines.
43     ///
44     /// **Why is this bad?** Functions with a lot of lines are harder to understand
45     /// due to having to look at a larger amount of code to understand what the
46     /// function is doing. Consider splitting the body of the function into
47     /// multiple functions.
48     ///
49     /// **Known problems:** None.
50     ///
51     /// **Example:**
52     /// ```rust
53     /// fn im_too_long() {
54     ///     println!("");
55     ///     // ... 100 more LoC
56     ///     println!("");
57     /// }
58     /// ```
59     pub TOO_MANY_LINES,
60     pedantic,
61     "functions with too many lines"
62 }
63
64 declare_clippy_lint! {
65     /// **What it does:** Checks for public functions that dereference raw pointer
66     /// arguments but are not marked unsafe.
67     ///
68     /// **Why is this bad?** The function should probably be marked `unsafe`, since
69     /// for an arbitrary raw pointer, there is no way of telling for sure if it is
70     /// valid.
71     ///
72     /// **Known problems:**
73     ///
74     /// * It does not check functions recursively so if the pointer is passed to a
75     /// private non-`unsafe` function which does the dereferencing, the lint won't
76     /// trigger.
77     /// * It only checks for arguments whose type are raw pointers, not raw pointers
78     /// got from an argument in some other way (`fn foo(bar: &[*const u8])` or
79     /// `some_argument.get_raw_ptr()`).
80     ///
81     /// **Example:**
82     /// ```rust,ignore
83     /// // Bad
84     /// pub fn foo(x: *const u8) {
85     ///     println!("{}", unsafe { *x });
86     /// }
87     ///
88     /// // Good
89     /// pub unsafe fn foo(x: *const u8) {
90     ///     println!("{}", unsafe { *x });
91     /// }
92     /// ```
93     pub NOT_UNSAFE_PTR_ARG_DEREF,
94     correctness,
95     "public functions dereferencing raw pointer arguments but not marked `unsafe`"
96 }
97
98 declare_clippy_lint! {
99     /// **What it does:** Checks for a [`#[must_use]`] attribute on
100     /// unit-returning functions and methods.
101     ///
102     /// [`#[must_use]`]: https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-attribute
103     ///
104     /// **Why is this bad?** Unit values are useless. The attribute is likely
105     /// a remnant of a refactoring that removed the return type.
106     ///
107     /// **Known problems:** None.
108     ///
109     /// **Examples:**
110     /// ```rust
111     /// #[must_use]
112     /// fn useless() { }
113     /// ```
114     pub MUST_USE_UNIT,
115     style,
116     "`#[must_use]` attribute on a unit-returning function / method"
117 }
118
119 declare_clippy_lint! {
120     /// **What it does:** Checks for a [`#[must_use]`] attribute without
121     /// further information on functions and methods that return a type already
122     /// marked as `#[must_use]`.
123     ///
124     /// [`#[must_use]`]: https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-attribute
125     ///
126     /// **Why is this bad?** The attribute isn't needed. Not using the result
127     /// will already be reported. Alternatively, one can add some text to the
128     /// attribute to improve the lint message.
129     ///
130     /// **Known problems:** None.
131     ///
132     /// **Examples:**
133     /// ```rust
134     /// #[must_use]
135     /// fn double_must_use() -> Result<(), ()> {
136     ///     unimplemented!();
137     /// }
138     /// ```
139     pub DOUBLE_MUST_USE,
140     style,
141     "`#[must_use]` attribute on a `#[must_use]`-returning function / method"
142 }
143
144 declare_clippy_lint! {
145     /// **What it does:** Checks for public functions that have no
146     /// [`#[must_use]`] attribute, but return something not already marked
147     /// must-use, have no mutable arg and mutate no statics.
148     ///
149     /// [`#[must_use]`]: https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-attribute
150     ///
151     /// **Why is this bad?** Not bad at all, this lint just shows places where
152     /// you could add the attribute.
153     ///
154     /// **Known problems:** The lint only checks the arguments for mutable
155     /// types without looking if they are actually changed. On the other hand,
156     /// it also ignores a broad range of potentially interesting side effects,
157     /// because we cannot decide whether the programmer intends the function to
158     /// be called for the side effect or the result. Expect many false
159     /// positives. At least we don't lint if the result type is unit or already
160     /// `#[must_use]`.
161     ///
162     /// **Examples:**
163     /// ```rust
164     /// // this could be annotated with `#[must_use]`.
165     /// fn id<T>(t: T) -> T { t }
166     /// ```
167     pub MUST_USE_CANDIDATE,
168     pedantic,
169     "function or method that could take a `#[must_use]` attribute"
170 }
171
172 #[derive(Copy, Clone)]
173 pub struct Functions {
174     threshold: u64,
175     max_lines: u64,
176 }
177
178 impl Functions {
179     pub fn new(threshold: u64, max_lines: u64) -> Self {
180         Self { threshold, max_lines }
181     }
182 }
183
184 impl_lint_pass!(Functions => [
185     TOO_MANY_ARGUMENTS,
186     TOO_MANY_LINES,
187     NOT_UNSAFE_PTR_ARG_DEREF,
188     MUST_USE_UNIT,
189     DOUBLE_MUST_USE,
190     MUST_USE_CANDIDATE,
191 ]);
192
193 impl<'tcx> LateLintPass<'tcx> for Functions {
194     fn check_fn(
195         &mut self,
196         cx: &LateContext<'tcx>,
197         kind: intravisit::FnKind<'tcx>,
198         decl: &'tcx hir::FnDecl<'_>,
199         body: &'tcx hir::Body<'_>,
200         span: Span,
201         hir_id: hir::HirId,
202     ) {
203         let unsafety = match kind {
204             intravisit::FnKind::ItemFn(_, _, hir::FnHeader { unsafety, .. }, _, _) => unsafety,
205             intravisit::FnKind::Method(_, sig, _, _) => sig.header.unsafety,
206             intravisit::FnKind::Closure(_) => return,
207         };
208
209         // don't warn for implementations, it's not their fault
210         if !is_trait_impl_item(cx, hir_id) {
211             // don't lint extern functions decls, it's not their fault either
212             match kind {
213                 intravisit::FnKind::Method(
214                     _,
215                     &hir::FnSig {
216                         header: hir::FnHeader { abi: Abi::Rust, .. },
217                         ..
218                     },
219                     _,
220                     _,
221                 )
222                 | intravisit::FnKind::ItemFn(_, _, hir::FnHeader { abi: Abi::Rust, .. }, _, _) => {
223                     self.check_arg_number(cx, decl, span.with_hi(decl.output.span().hi()))
224                 },
225                 _ => {},
226             }
227         }
228
229         Self::check_raw_ptr(cx, unsafety, decl, body, hir_id);
230         self.check_line_number(cx, span, body);
231     }
232
233     fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
234         let attr = must_use_attr(&item.attrs);
235         if let hir::ItemKind::Fn(ref sig, ref _generics, ref body_id) = item.kind {
236             if let Some(attr) = attr {
237                 let fn_header_span = item.span.with_hi(sig.decl.output.span().hi());
238                 check_needless_must_use(cx, &sig.decl, item.hir_id, item.span, fn_header_span, attr);
239                 return;
240             }
241             if cx.access_levels.is_exported(item.hir_id)
242                 && !is_proc_macro(cx.sess(), &item.attrs)
243                 && attr_by_name(&item.attrs, "no_mangle").is_none()
244             {
245                 check_must_use_candidate(
246                     cx,
247                     &sig.decl,
248                     cx.tcx.hir().body(*body_id),
249                     item.span,
250                     item.hir_id,
251                     item.span.with_hi(sig.decl.output.span().hi()),
252                     "this function could have a `#[must_use]` attribute",
253                 );
254             }
255         }
256     }
257
258     fn check_impl_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::ImplItem<'_>) {
259         if let hir::ImplItemKind::Fn(ref sig, ref body_id) = item.kind {
260             let attr = must_use_attr(&item.attrs);
261             if let Some(attr) = attr {
262                 let fn_header_span = item.span.with_hi(sig.decl.output.span().hi());
263                 check_needless_must_use(cx, &sig.decl, item.hir_id, item.span, fn_header_span, attr);
264             } else if cx.access_levels.is_exported(item.hir_id)
265                 && !is_proc_macro(cx.sess(), &item.attrs)
266                 && trait_ref_of_method(cx, item.hir_id).is_none()
267             {
268                 check_must_use_candidate(
269                     cx,
270                     &sig.decl,
271                     cx.tcx.hir().body(*body_id),
272                     item.span,
273                     item.hir_id,
274                     item.span.with_hi(sig.decl.output.span().hi()),
275                     "this method could have a `#[must_use]` attribute",
276                 );
277             }
278         }
279     }
280
281     fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::TraitItem<'_>) {
282         if let hir::TraitItemKind::Fn(ref sig, ref eid) = item.kind {
283             // don't lint extern functions decls, it's not their fault
284             if sig.header.abi == Abi::Rust {
285                 self.check_arg_number(cx, &sig.decl, item.span.with_hi(sig.decl.output.span().hi()));
286             }
287
288             let attr = must_use_attr(&item.attrs);
289             if let Some(attr) = attr {
290                 let fn_header_span = item.span.with_hi(sig.decl.output.span().hi());
291                 check_needless_must_use(cx, &sig.decl, item.hir_id, item.span, fn_header_span, attr);
292             }
293             if let hir::TraitFn::Provided(eid) = *eid {
294                 let body = cx.tcx.hir().body(eid);
295                 Self::check_raw_ptr(cx, sig.header.unsafety, &sig.decl, body, item.hir_id);
296
297                 if attr.is_none() && cx.access_levels.is_exported(item.hir_id) && !is_proc_macro(cx.sess(), &item.attrs)
298                 {
299                     check_must_use_candidate(
300                         cx,
301                         &sig.decl,
302                         body,
303                         item.span,
304                         item.hir_id,
305                         item.span.with_hi(sig.decl.output.span().hi()),
306                         "this method could have a `#[must_use]` attribute",
307                     );
308                 }
309             }
310         }
311     }
312 }
313
314 impl<'tcx> Functions {
315     fn check_arg_number(self, cx: &LateContext<'_>, decl: &hir::FnDecl<'_>, fn_span: Span) {
316         let args = decl.inputs.len() as u64;
317         if args > self.threshold {
318             span_lint(
319                 cx,
320                 TOO_MANY_ARGUMENTS,
321                 fn_span,
322                 &format!("this function has too many arguments ({}/{})", args, self.threshold),
323             );
324         }
325     }
326
327     fn check_line_number(self, cx: &LateContext<'_>, span: Span, body: &'tcx hir::Body<'_>) {
328         if in_external_macro(cx.sess(), span) {
329             return;
330         }
331
332         let code_snippet = snippet(cx, body.value.span, "..");
333         let mut line_count: u64 = 0;
334         let mut in_comment = false;
335         let mut code_in_line;
336
337         // Skip the surrounding function decl.
338         let start_brace_idx = code_snippet.find('{').map_or(0, |i| i + 1);
339         let end_brace_idx = code_snippet.rfind('}').unwrap_or_else(|| code_snippet.len());
340         let function_lines = code_snippet[start_brace_idx..end_brace_idx].lines();
341
342         for mut line in function_lines {
343             code_in_line = false;
344             loop {
345                 line = line.trim_start();
346                 if line.is_empty() {
347                     break;
348                 }
349                 if in_comment {
350                     match line.find("*/") {
351                         Some(i) => {
352                             line = &line[i + 2..];
353                             in_comment = false;
354                             continue;
355                         },
356                         None => break,
357                     }
358                 } else {
359                     let multi_idx = line.find("/*").unwrap_or_else(|| line.len());
360                     let single_idx = line.find("//").unwrap_or_else(|| line.len());
361                     code_in_line |= multi_idx > 0 && single_idx > 0;
362                     // Implies multi_idx is below line.len()
363                     if multi_idx < single_idx {
364                         line = &line[multi_idx + 2..];
365                         in_comment = true;
366                         continue;
367                     }
368                     break;
369                 }
370             }
371             if code_in_line {
372                 line_count += 1;
373             }
374         }
375
376         if line_count > self.max_lines {
377             span_lint(cx, TOO_MANY_LINES, span, "This function has a large number of lines.")
378         }
379     }
380
381     fn check_raw_ptr(
382         cx: &LateContext<'tcx>,
383         unsafety: hir::Unsafety,
384         decl: &'tcx hir::FnDecl<'_>,
385         body: &'tcx hir::Body<'_>,
386         hir_id: hir::HirId,
387     ) {
388         let expr = &body.value;
389         if unsafety == hir::Unsafety::Normal && cx.access_levels.is_exported(hir_id) {
390             let raw_ptrs = iter_input_pats(decl, body)
391                 .zip(decl.inputs.iter())
392                 .filter_map(|(arg, ty)| raw_ptr_arg(arg, ty))
393                 .collect::<FxHashSet<_>>();
394
395             if !raw_ptrs.is_empty() {
396                 let typeck_results = cx.tcx.typeck_body(body.id());
397                 let mut v = DerefVisitor {
398                     cx,
399                     ptrs: raw_ptrs,
400                     typeck_results,
401                 };
402
403                 intravisit::walk_expr(&mut v, expr);
404             }
405         }
406     }
407 }
408
409 fn check_needless_must_use(
410     cx: &LateContext<'_>,
411     decl: &hir::FnDecl<'_>,
412     item_id: hir::HirId,
413     item_span: Span,
414     fn_header_span: Span,
415     attr: &Attribute,
416 ) {
417     if in_external_macro(cx.sess(), item_span) {
418         return;
419     }
420     if returns_unit(decl) {
421         span_lint_and_then(
422             cx,
423             MUST_USE_UNIT,
424             fn_header_span,
425             "this unit-returning function has a `#[must_use]` attribute",
426             |diag| {
427                 diag.span_suggestion(
428                     attr.span,
429                     "remove the attribute",
430                     "".into(),
431                     Applicability::MachineApplicable,
432                 );
433             },
434         );
435     } else if !attr.is_value_str() && is_must_use_ty(cx, return_ty(cx, item_id)) {
436         span_lint_and_help(
437             cx,
438             DOUBLE_MUST_USE,
439             fn_header_span,
440             "this function has an empty `#[must_use]` attribute, but returns a type already marked as `#[must_use]`",
441             None,
442             "either add some descriptive text or remove the attribute",
443         );
444     }
445 }
446
447 fn check_must_use_candidate<'tcx>(
448     cx: &LateContext<'tcx>,
449     decl: &'tcx hir::FnDecl<'_>,
450     body: &'tcx hir::Body<'_>,
451     item_span: Span,
452     item_id: hir::HirId,
453     fn_span: Span,
454     msg: &str,
455 ) {
456     if has_mutable_arg(cx, body)
457         || mutates_static(cx, body)
458         || in_external_macro(cx.sess(), item_span)
459         || returns_unit(decl)
460         || !cx.access_levels.is_exported(item_id)
461         || is_must_use_ty(cx, return_ty(cx, item_id))
462     {
463         return;
464     }
465     span_lint_and_then(cx, MUST_USE_CANDIDATE, fn_span, msg, |diag| {
466         if let Some(snippet) = snippet_opt(cx, fn_span) {
467             diag.span_suggestion(
468                 fn_span,
469                 "add the attribute",
470                 format!("#[must_use] {}", snippet),
471                 Applicability::MachineApplicable,
472             );
473         }
474     });
475 }
476
477 fn returns_unit(decl: &hir::FnDecl<'_>) -> bool {
478     match decl.output {
479         hir::FnRetTy::DefaultReturn(_) => true,
480         hir::FnRetTy::Return(ref ty) => match ty.kind {
481             hir::TyKind::Tup(ref tys) => tys.is_empty(),
482             hir::TyKind::Never => true,
483             _ => false,
484         },
485     }
486 }
487
488 fn has_mutable_arg(cx: &LateContext<'_>, body: &hir::Body<'_>) -> bool {
489     let mut tys = FxHashSet::default();
490     body.params.iter().any(|param| is_mutable_pat(cx, &param.pat, &mut tys))
491 }
492
493 fn is_mutable_pat(cx: &LateContext<'_>, pat: &hir::Pat<'_>, tys: &mut FxHashSet<DefId>) -> bool {
494     if let hir::PatKind::Wild = pat.kind {
495         return false; // ignore `_` patterns
496     }
497     let def_id = pat.hir_id.owner.to_def_id();
498     if cx.tcx.has_typeck_results(def_id) {
499         is_mutable_ty(cx, &cx.tcx.typeck(def_id.expect_local()).pat_ty(pat), pat.span, tys)
500     } else {
501         false
502     }
503 }
504
505 static KNOWN_WRAPPER_TYS: &[&[&str]] = &[&["alloc", "rc", "Rc"], &["std", "sync", "Arc"]];
506
507 fn is_mutable_ty<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>, span: Span, tys: &mut FxHashSet<DefId>) -> bool {
508     match ty.kind {
509         // primitive types are never mutable
510         ty::Bool | ty::Char | ty::Int(_) | ty::Uint(_) | ty::Float(_) | ty::Str => false,
511         ty::Adt(ref adt, ref substs) => {
512             tys.insert(adt.did) && !ty.is_freeze(cx.tcx.at(span), cx.param_env)
513                 || KNOWN_WRAPPER_TYS.iter().any(|path| match_def_path(cx, adt.did, path))
514                     && substs.types().any(|ty| is_mutable_ty(cx, ty, span, tys))
515         },
516         ty::Tuple(ref substs) => substs.types().any(|ty| is_mutable_ty(cx, ty, span, tys)),
517         ty::Array(ty, _) | ty::Slice(ty) => is_mutable_ty(cx, ty, span, tys),
518         ty::RawPtr(ty::TypeAndMut { ty, mutbl }) | ty::Ref(_, ty, mutbl) => {
519             mutbl == hir::Mutability::Mut || is_mutable_ty(cx, ty, span, tys)
520         },
521         // calling something constitutes a side effect, so return true on all callables
522         // also never calls need not be used, so return true for them, too
523         _ => true,
524     }
525 }
526
527 fn raw_ptr_arg(arg: &hir::Param<'_>, ty: &hir::Ty<'_>) -> Option<hir::HirId> {
528     if let (&hir::PatKind::Binding(_, id, _, _), &hir::TyKind::Ptr(_)) = (&arg.pat.kind, &ty.kind) {
529         Some(id)
530     } else {
531         None
532     }
533 }
534
535 struct DerefVisitor<'a, 'tcx> {
536     cx: &'a LateContext<'tcx>,
537     ptrs: FxHashSet<hir::HirId>,
538     typeck_results: &'a ty::TypeckResults<'tcx>,
539 }
540
541 impl<'a, 'tcx> intravisit::Visitor<'tcx> for DerefVisitor<'a, 'tcx> {
542     type Map = Map<'tcx>;
543
544     fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
545         match expr.kind {
546             hir::ExprKind::Call(ref f, args) => {
547                 let ty = self.typeck_results.expr_ty(f);
548
549                 if type_is_unsafe_function(self.cx, ty) {
550                     for arg in args {
551                         self.check_arg(arg);
552                     }
553                 }
554             },
555             hir::ExprKind::MethodCall(_, _, args, _) => {
556                 let def_id = self.typeck_results.type_dependent_def_id(expr.hir_id).unwrap();
557                 let base_type = self.cx.tcx.type_of(def_id);
558
559                 if type_is_unsafe_function(self.cx, base_type) {
560                     for arg in args {
561                         self.check_arg(arg);
562                     }
563                 }
564             },
565             hir::ExprKind::Unary(hir::UnOp::UnDeref, ref ptr) => self.check_arg(ptr),
566             _ => (),
567         }
568
569         intravisit::walk_expr(self, expr);
570     }
571
572     fn nested_visit_map(&mut self) -> intravisit::NestedVisitorMap<Self::Map> {
573         intravisit::NestedVisitorMap::None
574     }
575 }
576
577 impl<'a, 'tcx> DerefVisitor<'a, 'tcx> {
578     fn check_arg(&self, ptr: &hir::Expr<'_>) {
579         if let hir::ExprKind::Path(ref qpath) = ptr.kind {
580             if let Res::Local(id) = qpath_res(self.cx, qpath, ptr.hir_id) {
581                 if self.ptrs.contains(&id) {
582                     span_lint(
583                         self.cx,
584                         NOT_UNSAFE_PTR_ARG_DEREF,
585                         ptr.span,
586                         "this public function dereferences a raw pointer but is not marked `unsafe`",
587                     );
588                 }
589             }
590         }
591     }
592 }
593
594 struct StaticMutVisitor<'a, 'tcx> {
595     cx: &'a LateContext<'tcx>,
596     mutates_static: bool,
597 }
598
599 impl<'a, 'tcx> intravisit::Visitor<'tcx> for StaticMutVisitor<'a, 'tcx> {
600     type Map = Map<'tcx>;
601
602     fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
603         use hir::ExprKind::{AddrOf, Assign, AssignOp, Call, MethodCall};
604
605         if self.mutates_static {
606             return;
607         }
608         match expr.kind {
609             Call(_, args) | MethodCall(_, _, args, _) => {
610                 let mut tys = FxHashSet::default();
611                 for arg in args {
612                     let def_id = arg.hir_id.owner.to_def_id();
613                     if self.cx.tcx.has_typeck_results(def_id)
614                         && is_mutable_ty(
615                             self.cx,
616                             self.cx.tcx.typeck(def_id.expect_local()).expr_ty(arg),
617                             arg.span,
618                             &mut tys,
619                         )
620                         && is_mutated_static(self.cx, arg)
621                     {
622                         self.mutates_static = true;
623                         return;
624                     }
625                     tys.clear();
626                 }
627             },
628             Assign(ref target, ..) | AssignOp(_, ref target, _) | AddrOf(_, hir::Mutability::Mut, ref target) => {
629                 self.mutates_static |= is_mutated_static(self.cx, target)
630             },
631             _ => {},
632         }
633     }
634
635     fn nested_visit_map(&mut self) -> intravisit::NestedVisitorMap<Self::Map> {
636         intravisit::NestedVisitorMap::None
637     }
638 }
639
640 fn is_mutated_static(cx: &LateContext<'_>, e: &hir::Expr<'_>) -> bool {
641     use hir::ExprKind::{Field, Index, Path};
642
643     match e.kind {
644         Path(ref qpath) => !matches!(qpath_res(cx, qpath, e.hir_id), Res::Local(_)),
645         Field(ref inner, _) | Index(ref inner, _) => is_mutated_static(cx, inner),
646         _ => false,
647     }
648 }
649
650 fn mutates_static<'tcx>(cx: &LateContext<'tcx>, body: &'tcx hir::Body<'_>) -> bool {
651     let mut v = StaticMutVisitor {
652         cx,
653         mutates_static: false,
654     };
655     intravisit::walk_expr(&mut v, &body.value);
656     v.mutates_static
657 }