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