]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/methods/mod.rs
Rollup merge of #5716 - bugadani:patch-1, r=matthiaskrgr
[rust.git] / clippy_lints / src / methods / mod.rs
1 mod bind_instead_of_map;
2 mod inefficient_to_string;
3 mod manual_saturating_arithmetic;
4 mod option_map_unwrap_or;
5 mod unnecessary_filter_map;
6
7 use std::borrow::Cow;
8 use std::fmt;
9 use std::iter;
10
11 use bind_instead_of_map::BindInsteadOfMap;
12 use if_chain::if_chain;
13 use rustc_ast::ast;
14 use rustc_errors::Applicability;
15 use rustc_hir as hir;
16 use rustc_hir::intravisit::{self, Visitor};
17 use rustc_lint::{LateContext, LateLintPass, Lint, LintContext};
18 use rustc_middle::hir::map::Map;
19 use rustc_middle::lint::in_external_macro;
20 use rustc_middle::ty::subst::GenericArgKind;
21 use rustc_middle::ty::{self, Ty, TyS};
22 use rustc_session::{declare_lint_pass, declare_tool_lint};
23 use rustc_span::source_map::Span;
24 use rustc_span::symbol::{sym, SymbolStr};
25
26 use crate::consts::{constant, Constant};
27 use crate::utils::usage::mutated_variables;
28 use crate::utils::{
29     get_arg_name, get_parent_expr, get_trait_def_id, has_iter_method, higher, implements_trait, in_macro, is_copy,
30     is_ctor_or_promotable_const_function, is_expn_of, is_type_diagnostic_item, iter_input_pats, last_path_segment,
31     match_def_path, match_qpath, match_trait_method, match_type, match_var, method_calls, method_chain_args, paths,
32     remove_blocks, return_ty, single_segment_path, snippet, snippet_with_applicability, snippet_with_macro_callsite,
33     span_lint, span_lint_and_help, span_lint_and_note, span_lint_and_sugg, span_lint_and_then, sugg, walk_ptrs_ty,
34     walk_ptrs_ty_depth, SpanlessEq,
35 };
36
37 declare_clippy_lint! {
38     /// **What it does:** Checks for `.unwrap()` calls on `Option`s and on `Result`s.
39     ///
40     /// **Why is this bad?** It is better to handle the `None` or `Err` case,
41     /// or at least call `.expect(_)` with a more helpful message. Still, for a lot of
42     /// quick-and-dirty code, `unwrap` is a good choice, which is why this lint is
43     /// `Allow` by default.
44     ///
45     /// `result.unwrap()` will let the thread panic on `Err` values.
46     /// Normally, you want to implement more sophisticated error handling,
47     /// and propagate errors upwards with `?` operator.
48     ///
49     /// Even if you want to panic on errors, not all `Error`s implement good
50     /// messages on display. Therefore, it may be beneficial to look at the places
51     /// where they may get displayed. Activate this lint to do just that.
52     ///
53     /// **Known problems:** None.
54     ///
55     /// **Examples:**
56     /// ```rust
57     /// # let opt = Some(1);
58     ///
59     /// // Bad
60     /// opt.unwrap();
61     ///
62     /// // Good
63     /// opt.expect("more helpful message");
64     /// ```
65     ///
66     /// // or
67     ///
68     /// ```rust
69     /// # let res: Result<usize, ()> = Ok(1);
70     ///
71     /// // Bad
72     /// res.unwrap();
73     ///
74     /// // Good
75     /// res.expect("more helpful message");
76     /// ```
77     pub UNWRAP_USED,
78     restriction,
79     "using `.unwrap()` on `Result` or `Option`, which should at least get a better message using `expect()`"
80 }
81
82 declare_clippy_lint! {
83     /// **What it does:** Checks for `.expect()` calls on `Option`s and `Result`s.
84     ///
85     /// **Why is this bad?** Usually it is better to handle the `None` or `Err` case.
86     /// Still, for a lot of quick-and-dirty code, `expect` is a good choice, which is why
87     /// this lint is `Allow` by default.
88     ///
89     /// `result.expect()` will let the thread panic on `Err`
90     /// values. Normally, you want to implement more sophisticated error handling,
91     /// and propagate errors upwards with `?` operator.
92     ///
93     /// **Known problems:** None.
94     ///
95     /// **Examples:**
96     /// ```rust,ignore
97     /// # let opt = Some(1);
98     ///
99     /// // Bad
100     /// opt.expect("one");
101     ///
102     /// // Good
103     /// let opt = Some(1);
104     /// opt?;
105     /// ```
106     ///
107     /// // or
108     ///
109     /// ```rust
110     /// # let res: Result<usize, ()> = Ok(1);
111     ///
112     /// // Bad
113     /// res.expect("one");
114     ///
115     /// // Good
116     /// res?;
117     /// # Ok::<(), ()>(())
118     /// ```
119     pub EXPECT_USED,
120     restriction,
121     "using `.expect()` on `Result` or `Option`, which might be better handled"
122 }
123
124 declare_clippy_lint! {
125     /// **What it does:** Checks for methods that should live in a trait
126     /// implementation of a `std` trait (see [llogiq's blog
127     /// post](http://llogiq.github.io/2015/07/30/traits.html) for further
128     /// information) instead of an inherent implementation.
129     ///
130     /// **Why is this bad?** Implementing the traits improve ergonomics for users of
131     /// the code, often with very little cost. Also people seeing a `mul(...)`
132     /// method
133     /// may expect `*` to work equally, so you should have good reason to disappoint
134     /// them.
135     ///
136     /// **Known problems:** None.
137     ///
138     /// **Example:**
139     /// ```rust
140     /// struct X;
141     /// impl X {
142     ///     fn add(&self, other: &X) -> X {
143     ///         // ..
144     /// # X
145     ///     }
146     /// }
147     /// ```
148     pub SHOULD_IMPLEMENT_TRAIT,
149     style,
150     "defining a method that should be implementing a std trait"
151 }
152
153 declare_clippy_lint! {
154     /// **What it does:** Checks for methods with certain name prefixes and which
155     /// doesn't match how self is taken. The actual rules are:
156     ///
157     /// |Prefix |`self` taken          |
158     /// |-------|----------------------|
159     /// |`as_`  |`&self` or `&mut self`|
160     /// |`from_`| none                 |
161     /// |`into_`|`self`                |
162     /// |`is_`  |`&self` or none       |
163     /// |`to_`  |`&self`               |
164     ///
165     /// **Why is this bad?** Consistency breeds readability. If you follow the
166     /// conventions, your users won't be surprised that they, e.g., need to supply a
167     /// mutable reference to a `as_..` function.
168     ///
169     /// **Known problems:** None.
170     ///
171     /// **Example:**
172     /// ```rust
173     /// # struct X;
174     /// impl X {
175     ///     fn as_str(self) -> &'static str {
176     ///         // ..
177     /// # ""
178     ///     }
179     /// }
180     /// ```
181     pub WRONG_SELF_CONVENTION,
182     style,
183     "defining a method named with an established prefix (like \"into_\") that takes `self` with the wrong convention"
184 }
185
186 declare_clippy_lint! {
187     /// **What it does:** This is the same as
188     /// [`wrong_self_convention`](#wrong_self_convention), but for public items.
189     ///
190     /// **Why is this bad?** See [`wrong_self_convention`](#wrong_self_convention).
191     ///
192     /// **Known problems:** Actually *renaming* the function may break clients if
193     /// the function is part of the public interface. In that case, be mindful of
194     /// the stability guarantees you've given your users.
195     ///
196     /// **Example:**
197     /// ```rust
198     /// # struct X;
199     /// impl<'a> X {
200     ///     pub fn as_str(self) -> &'a str {
201     ///         "foo"
202     ///     }
203     /// }
204     /// ```
205     pub WRONG_PUB_SELF_CONVENTION,
206     restriction,
207     "defining a public method named with an established prefix (like \"into_\") that takes `self` with the wrong convention"
208 }
209
210 declare_clippy_lint! {
211     /// **What it does:** Checks for usage of `ok().expect(..)`.
212     ///
213     /// **Why is this bad?** Because you usually call `expect()` on the `Result`
214     /// directly to get a better error message.
215     ///
216     /// **Known problems:** The error type needs to implement `Debug`
217     ///
218     /// **Example:**
219     /// ```rust
220     /// # let x = Ok::<_, ()>(());
221     ///
222     /// // Bad
223     /// x.ok().expect("why did I do this again?");
224     ///
225     /// // Good
226     /// x.expect("why did I do this again?");
227     /// ```
228     pub OK_EXPECT,
229     style,
230     "using `ok().expect()`, which gives worse error messages than calling `expect` directly on the Result"
231 }
232
233 declare_clippy_lint! {
234     /// **What it does:** Checks for usage of `option.map(_).unwrap_or(_)` or `option.map(_).unwrap_or_else(_)` or
235     /// `result.map(_).unwrap_or_else(_)`.
236     ///
237     /// **Why is this bad?** Readability, these can be written more concisely (resp.) as
238     /// `option.map_or(_, _)`, `option.map_or_else(_, _)` and `result.map_or_else(_, _)`.
239     ///
240     /// **Known problems:** The order of the arguments is not in execution order
241     ///
242     /// **Examples:**
243     /// ```rust
244     /// # let x = Some(1);
245     ///
246     /// // Bad
247     /// x.map(|a| a + 1).unwrap_or(0);
248     ///
249     /// // Good
250     /// x.map_or(0, |a| a + 1);
251     /// ```
252     ///
253     /// // or
254     ///
255     /// ```rust
256     /// # let x: Result<usize, ()> = Ok(1);
257     /// # fn some_function(foo: ()) -> usize { 1 }
258     ///
259     /// // Bad
260     /// x.map(|a| a + 1).unwrap_or_else(some_function);
261     ///
262     /// // Good
263     /// x.map_or_else(some_function, |a| a + 1);
264     /// ```
265     pub MAP_UNWRAP_OR,
266     pedantic,
267     "using `.map(f).unwrap_or(a)` or `.map(f).unwrap_or_else(func)`, which are more succinctly expressed as `map_or(a, f)` or `map_or_else(a, f)`"
268 }
269
270 declare_clippy_lint! {
271     /// **What it does:** Checks for usage of `_.map_or(None, _)`.
272     ///
273     /// **Why is this bad?** Readability, this can be written more concisely as
274     /// `_.and_then(_)`.
275     ///
276     /// **Known problems:** The order of the arguments is not in execution order.
277     ///
278     /// **Example:**
279     /// ```rust
280     /// # let opt = Some(1);
281     ///
282     /// // Bad
283     /// opt.map_or(None, |a| Some(a + 1));
284     ///
285     /// // Good
286     /// opt.and_then(|a| Some(a + 1));
287     /// ```
288     pub OPTION_MAP_OR_NONE,
289     style,
290     "using `Option.map_or(None, f)`, which is more succinctly expressed as `and_then(f)`"
291 }
292
293 declare_clippy_lint! {
294     /// **What it does:** Checks for usage of `_.map_or(None, Some)`.
295     ///
296     /// **Why is this bad?** Readability, this can be written more concisely as
297     /// `_.ok()`.
298     ///
299     /// **Known problems:** None.
300     ///
301     /// **Example:**
302     ///
303     /// Bad:
304     /// ```rust
305     /// # let r: Result<u32, &str> = Ok(1);
306     /// assert_eq!(Some(1), r.map_or(None, Some));
307     /// ```
308     ///
309     /// Good:
310     /// ```rust
311     /// # let r: Result<u32, &str> = Ok(1);
312     /// assert_eq!(Some(1), r.ok());
313     /// ```
314     pub RESULT_MAP_OR_INTO_OPTION,
315     style,
316     "using `Result.map_or(None, Some)`, which is more succinctly expressed as `ok()`"
317 }
318
319 declare_clippy_lint! {
320     /// **What it does:** Checks for usage of `_.and_then(|x| Some(y))`, `_.and_then(|x| Ok(y))` or
321     /// `_.or_else(|x| Err(y))`.
322     ///
323     /// **Why is this bad?** Readability, this can be written more concisely as
324     /// `_.map(|x| y)` or `_.map_err(|x| y)`.
325     ///
326     /// **Known problems:** None
327     ///
328     /// **Example:**
329     ///
330     /// ```rust
331     /// # fn opt() -> Option<&'static str> { Some("42") }
332     /// # fn res() -> Result<&'static str, &'static str> { Ok("42") }
333     /// let _ = opt().and_then(|s| Some(s.len()));
334     /// let _ = res().and_then(|s| if s.len() == 42 { Ok(10) } else { Ok(20) });
335     /// let _ = res().or_else(|s| if s.len() == 42 { Err(10) } else { Err(20) });
336     /// ```
337     ///
338     /// The correct use would be:
339     ///
340     /// ```rust
341     /// # fn opt() -> Option<&'static str> { Some("42") }
342     /// # fn res() -> Result<&'static str, &'static str> { Ok("42") }
343     /// let _ = opt().map(|s| s.len());
344     /// let _ = res().map(|s| if s.len() == 42 { 10 } else { 20 });
345     /// let _ = res().map_err(|s| if s.len() == 42 { 10 } else { 20 });
346     /// ```
347     pub BIND_INSTEAD_OF_MAP,
348     complexity,
349     "using `Option.and_then(|x| Some(y))`, which is more succinctly expressed as `map(|x| y)`"
350 }
351
352 declare_clippy_lint! {
353     /// **What it does:** Checks for usage of `_.filter(_).next()`.
354     ///
355     /// **Why is this bad?** Readability, this can be written more concisely as
356     /// `_.find(_)`.
357     ///
358     /// **Known problems:** None.
359     ///
360     /// **Example:**
361     /// ```rust
362     /// # let vec = vec![1];
363     /// vec.iter().filter(|x| **x == 0).next();
364     /// ```
365     /// Could be written as
366     /// ```rust
367     /// # let vec = vec![1];
368     /// vec.iter().find(|x| **x == 0);
369     /// ```
370     pub FILTER_NEXT,
371     complexity,
372     "using `filter(p).next()`, which is more succinctly expressed as `.find(p)`"
373 }
374
375 declare_clippy_lint! {
376     /// **What it does:** Checks for usage of `_.skip_while(condition).next()`.
377     ///
378     /// **Why is this bad?** Readability, this can be written more concisely as
379     /// `_.find(!condition)`.
380     ///
381     /// **Known problems:** None.
382     ///
383     /// **Example:**
384     /// ```rust
385     /// # let vec = vec![1];
386     /// vec.iter().skip_while(|x| **x == 0).next();
387     /// ```
388     /// Could be written as
389     /// ```rust
390     /// # let vec = vec![1];
391     /// vec.iter().find(|x| **x != 0);
392     /// ```
393     pub SKIP_WHILE_NEXT,
394     complexity,
395     "using `skip_while(p).next()`, which is more succinctly expressed as `.find(!p)`"
396 }
397
398 declare_clippy_lint! {
399     /// **What it does:** Checks for usage of `_.map(_).flatten(_)`,
400     ///
401     /// **Why is this bad?** Readability, this can be written more concisely as a
402     /// single method call using `_.flat_map(_)`
403     ///
404     /// **Known problems:**
405     ///
406     /// **Example:**
407     /// ```rust
408     /// let vec = vec![vec![1]];
409     ///
410     /// // Bad
411     /// vec.iter().map(|x| x.iter()).flatten();
412     ///
413     /// // Good
414     /// vec.iter().flat_map(|x| x.iter());
415     /// ```
416     pub MAP_FLATTEN,
417     pedantic,
418     "using combinations of `flatten` and `map` which can usually be written as a single method call"
419 }
420
421 declare_clippy_lint! {
422     /// **What it does:** Checks for usage of `_.filter(_).map(_)`,
423     /// `_.filter(_).flat_map(_)`, `_.filter_map(_).flat_map(_)` and similar.
424     ///
425     /// **Why is this bad?** Readability, this can be written more concisely as a
426     /// single method call.
427     ///
428     /// **Known problems:** Often requires a condition + Option/Iterator creation
429     /// inside the closure.
430     ///
431     /// **Example:**
432     /// ```rust
433     /// let vec = vec![1];
434     ///
435     /// // Bad
436     /// vec.iter().filter(|x| **x == 0).map(|x| *x * 2);
437     ///
438     /// // Good
439     /// vec.iter().filter_map(|x| if *x == 0 {
440     ///     Some(*x * 2)
441     /// } else {
442     ///     None
443     /// });
444     /// ```
445     pub FILTER_MAP,
446     pedantic,
447     "using combinations of `filter`, `map`, `filter_map` and `flat_map` which can usually be written as a single method call"
448 }
449
450 declare_clippy_lint! {
451     /// **What it does:** Checks for usage of `_.filter_map(_).next()`.
452     ///
453     /// **Why is this bad?** Readability, this can be written more concisely as a
454     /// single method call.
455     ///
456     /// **Known problems:** None
457     ///
458     /// **Example:**
459     /// ```rust
460     ///  (0..3).filter_map(|x| if x == 2 { Some(x) } else { None }).next();
461     /// ```
462     /// Can be written as
463     ///
464     /// ```rust
465     ///  (0..3).find_map(|x| if x == 2 { Some(x) } else { None });
466     /// ```
467     pub FILTER_MAP_NEXT,
468     pedantic,
469     "using combination of `filter_map` and `next` which can usually be written as a single method call"
470 }
471
472 declare_clippy_lint! {
473     /// **What it does:** Checks for usage of `flat_map(|x| x)`.
474     ///
475     /// **Why is this bad?** Readability, this can be written more concisely by using `flatten`.
476     ///
477     /// **Known problems:** None
478     ///
479     /// **Example:**
480     /// ```rust
481     /// # let iter = vec![vec![0]].into_iter();
482     /// iter.flat_map(|x| x);
483     /// ```
484     /// Can be written as
485     /// ```rust
486     /// # let iter = vec![vec![0]].into_iter();
487     /// iter.flatten();
488     /// ```
489     pub FLAT_MAP_IDENTITY,
490     complexity,
491     "call to `flat_map` where `flatten` is sufficient"
492 }
493
494 declare_clippy_lint! {
495     /// **What it does:** Checks for usage of `_.find(_).map(_)`.
496     ///
497     /// **Why is this bad?** Readability, this can be written more concisely as a
498     /// single method call.
499     ///
500     /// **Known problems:** Often requires a condition + Option/Iterator creation
501     /// inside the closure.
502     ///
503     /// **Example:**
504     /// ```rust
505     ///  (0..3).find(|x| *x == 2).map(|x| x * 2);
506     /// ```
507     /// Can be written as
508     /// ```rust
509     ///  (0..3).find_map(|x| if x == 2 { Some(x * 2) } else { None });
510     /// ```
511     pub FIND_MAP,
512     pedantic,
513     "using a combination of `find` and `map` can usually be written as a single method call"
514 }
515
516 declare_clippy_lint! {
517     /// **What it does:** Checks for an iterator search (such as `find()`,
518     /// `position()`, or `rposition()`) followed by a call to `is_some()`.
519     ///
520     /// **Why is this bad?** Readability, this can be written more concisely as
521     /// `_.any(_)`.
522     ///
523     /// **Known problems:** None.
524     ///
525     /// **Example:**
526     /// ```rust
527     /// # let vec = vec![1];
528     /// vec.iter().find(|x| **x == 0).is_some();
529     /// ```
530     /// Could be written as
531     /// ```rust
532     /// # let vec = vec![1];
533     /// vec.iter().any(|x| *x == 0);
534     /// ```
535     pub SEARCH_IS_SOME,
536     complexity,
537     "using an iterator search followed by `is_some()`, which is more succinctly expressed as a call to `any()`"
538 }
539
540 declare_clippy_lint! {
541     /// **What it does:** Checks for usage of `.chars().next()` on a `str` to check
542     /// if it starts with a given char.
543     ///
544     /// **Why is this bad?** Readability, this can be written more concisely as
545     /// `_.starts_with(_)`.
546     ///
547     /// **Known problems:** None.
548     ///
549     /// **Example:**
550     /// ```rust
551     /// let name = "foo";
552     /// if name.chars().next() == Some('_') {};
553     /// ```
554     /// Could be written as
555     /// ```rust
556     /// let name = "foo";
557     /// if name.starts_with('_') {};
558     /// ```
559     pub CHARS_NEXT_CMP,
560     style,
561     "using `.chars().next()` to check if a string starts with a char"
562 }
563
564 declare_clippy_lint! {
565     /// **What it does:** Checks for calls to `.or(foo(..))`, `.unwrap_or(foo(..))`,
566     /// etc., and suggests to use `or_else`, `unwrap_or_else`, etc., or
567     /// `unwrap_or_default` instead.
568     ///
569     /// **Why is this bad?** The function will always be called and potentially
570     /// allocate an object acting as the default.
571     ///
572     /// **Known problems:** If the function has side-effects, not calling it will
573     /// change the semantic of the program, but you shouldn't rely on that anyway.
574     ///
575     /// **Example:**
576     /// ```rust
577     /// # let foo = Some(String::new());
578     /// foo.unwrap_or(String::new());
579     /// ```
580     /// this can instead be written:
581     /// ```rust
582     /// # let foo = Some(String::new());
583     /// foo.unwrap_or_else(String::new);
584     /// ```
585     /// or
586     /// ```rust
587     /// # let foo = Some(String::new());
588     /// foo.unwrap_or_default();
589     /// ```
590     pub OR_FUN_CALL,
591     perf,
592     "using any `*or` method with a function call, which suggests `*or_else`"
593 }
594
595 declare_clippy_lint! {
596     /// **What it does:** Checks for calls to `.expect(&format!(...))`, `.expect(foo(..))`,
597     /// etc., and suggests to use `unwrap_or_else` instead
598     ///
599     /// **Why is this bad?** The function will always be called.
600     ///
601     /// **Known problems:** If the function has side-effects, not calling it will
602     /// change the semantics of the program, but you shouldn't rely on that anyway.
603     ///
604     /// **Example:**
605     /// ```rust
606     /// # let foo = Some(String::new());
607     /// # let err_code = "418";
608     /// # let err_msg = "I'm a teapot";
609     /// foo.expect(&format!("Err {}: {}", err_code, err_msg));
610     /// ```
611     /// or
612     /// ```rust
613     /// # let foo = Some(String::new());
614     /// # let err_code = "418";
615     /// # let err_msg = "I'm a teapot";
616     /// foo.expect(format!("Err {}: {}", err_code, err_msg).as_str());
617     /// ```
618     /// this can instead be written:
619     /// ```rust
620     /// # let foo = Some(String::new());
621     /// # let err_code = "418";
622     /// # let err_msg = "I'm a teapot";
623     /// foo.unwrap_or_else(|| panic!("Err {}: {}", err_code, err_msg));
624     /// ```
625     pub EXPECT_FUN_CALL,
626     perf,
627     "using any `expect` method with a function call"
628 }
629
630 declare_clippy_lint! {
631     /// **What it does:** Checks for usage of `.clone()` on a `Copy` type.
632     ///
633     /// **Why is this bad?** The only reason `Copy` types implement `Clone` is for
634     /// generics, not for using the `clone` method on a concrete type.
635     ///
636     /// **Known problems:** None.
637     ///
638     /// **Example:**
639     /// ```rust
640     /// 42u64.clone();
641     /// ```
642     pub CLONE_ON_COPY,
643     complexity,
644     "using `clone` on a `Copy` type"
645 }
646
647 declare_clippy_lint! {
648     /// **What it does:** Checks for usage of `.clone()` on a ref-counted pointer,
649     /// (`Rc`, `Arc`, `rc::Weak`, or `sync::Weak`), and suggests calling Clone via unified
650     /// function syntax instead (e.g., `Rc::clone(foo)`).
651     ///
652     /// **Why is this bad?** Calling '.clone()' on an Rc, Arc, or Weak
653     /// can obscure the fact that only the pointer is being cloned, not the underlying
654     /// data.
655     ///
656     /// **Example:**
657     /// ```rust
658     /// # use std::rc::Rc;
659     /// let x = Rc::new(1);
660     ///
661     /// // Bad
662     /// x.clone();
663     ///
664     /// // Good
665     /// Rc::clone(&x);
666     /// ```
667     pub CLONE_ON_REF_PTR,
668     restriction,
669     "using 'clone' on a ref-counted pointer"
670 }
671
672 declare_clippy_lint! {
673     /// **What it does:** Checks for usage of `.clone()` on an `&&T`.
674     ///
675     /// **Why is this bad?** Cloning an `&&T` copies the inner `&T`, instead of
676     /// cloning the underlying `T`.
677     ///
678     /// **Known problems:** None.
679     ///
680     /// **Example:**
681     /// ```rust
682     /// fn main() {
683     ///     let x = vec![1];
684     ///     let y = &&x;
685     ///     let z = y.clone();
686     ///     println!("{:p} {:p}", *y, z); // prints out the same pointer
687     /// }
688     /// ```
689     pub CLONE_DOUBLE_REF,
690     correctness,
691     "using `clone` on `&&T`"
692 }
693
694 declare_clippy_lint! {
695     /// **What it does:** Checks for usage of `.to_string()` on an `&&T` where
696     /// `T` implements `ToString` directly (like `&&str` or `&&String`).
697     ///
698     /// **Why is this bad?** This bypasses the specialized implementation of
699     /// `ToString` and instead goes through the more expensive string formatting
700     /// facilities.
701     ///
702     /// **Known problems:** None.
703     ///
704     /// **Example:**
705     /// ```rust
706     /// // Generic implementation for `T: Display` is used (slow)
707     /// ["foo", "bar"].iter().map(|s| s.to_string());
708     ///
709     /// // OK, the specialized impl is used
710     /// ["foo", "bar"].iter().map(|&s| s.to_string());
711     /// ```
712     pub INEFFICIENT_TO_STRING,
713     pedantic,
714     "using `to_string` on `&&T` where `T: ToString`"
715 }
716
717 declare_clippy_lint! {
718     /// **What it does:** Checks for `new` not returning a type that contains `Self`.
719     ///
720     /// **Why is this bad?** As a convention, `new` methods are used to make a new
721     /// instance of a type.
722     ///
723     /// **Known problems:** None.
724     ///
725     /// **Example:**
726     /// ```rust
727     /// # struct Foo;
728     /// # struct NotAFoo;
729     /// impl Foo {
730     ///     fn new() -> NotAFoo {
731     /// # NotAFoo
732     ///     }
733     /// }
734     /// ```
735     ///
736     /// ```rust
737     /// # struct Foo;
738     /// # struct FooError;
739     /// impl Foo {
740     ///     // Good. Return type contains `Self`
741     ///     fn new() -> Result<Foo, FooError> {
742     ///         # Ok(Foo)
743     ///     }
744     /// }
745     /// ```
746     ///
747     /// ```rust
748     /// # struct Foo;
749     /// struct Bar(Foo);
750     /// impl Foo {
751     ///     // Bad. The type name must contain `Self`.
752     ///     fn new() -> Bar {
753     ///         # Bar(Foo)
754     ///     }
755     /// }
756     /// ```
757     pub NEW_RET_NO_SELF,
758     style,
759     "not returning type containing `Self` in a `new` method"
760 }
761
762 declare_clippy_lint! {
763     /// **What it does:** Checks for string methods that receive a single-character
764     /// `str` as an argument, e.g., `_.split("x")`.
765     ///
766     /// **Why is this bad?** Performing these methods using a `char` is faster than
767     /// using a `str`.
768     ///
769     /// **Known problems:** Does not catch multi-byte unicode characters.
770     ///
771     /// **Example:**
772     /// ```rust,ignore
773     /// // Bad
774     /// _.split("x");
775     ///
776     /// // Good
777     /// _.split('x');
778     pub SINGLE_CHAR_PATTERN,
779     perf,
780     "using a single-character str where a char could be used, e.g., `_.split(\"x\")`"
781 }
782
783 declare_clippy_lint! {
784     /// **What it does:** Checks for getting the inner pointer of a temporary
785     /// `CString`.
786     ///
787     /// **Why is this bad?** The inner pointer of a `CString` is only valid as long
788     /// as the `CString` is alive.
789     ///
790     /// **Known problems:** None.
791     ///
792     /// **Example:**
793     /// ```rust
794     /// # use std::ffi::CString;
795     /// # fn call_some_ffi_func(_: *const i8) {}
796     /// #
797     /// let c_str = CString::new("foo").unwrap().as_ptr();
798     /// unsafe {
799     ///     call_some_ffi_func(c_str);
800     /// }
801     /// ```
802     /// Here `c_str` point to a freed address. The correct use would be:
803     /// ```rust
804     /// # use std::ffi::CString;
805     /// # fn call_some_ffi_func(_: *const i8) {}
806     /// #
807     /// let c_str = CString::new("foo").unwrap();
808     /// unsafe {
809     ///     call_some_ffi_func(c_str.as_ptr());
810     /// }
811     /// ```
812     pub TEMPORARY_CSTRING_AS_PTR,
813     correctness,
814     "getting the inner pointer of a temporary `CString`"
815 }
816
817 declare_clippy_lint! {
818     /// **What it does:** Checks for calling `.step_by(0)` on iterators which panics.
819     ///
820     /// **Why is this bad?** This very much looks like an oversight. Use `panic!()` instead if you
821     /// actually intend to panic.
822     ///
823     /// **Known problems:** None.
824     ///
825     /// **Example:**
826     /// ```rust,should_panic
827     /// for x in (0..100).step_by(0) {
828     ///     //..
829     /// }
830     /// ```
831     pub ITERATOR_STEP_BY_ZERO,
832     correctness,
833     "using `Iterator::step_by(0)`, which will panic at runtime"
834 }
835
836 declare_clippy_lint! {
837     /// **What it does:** Checks for the use of `iter.nth(0)`.
838     ///
839     /// **Why is this bad?** `iter.next()` is equivalent to
840     /// `iter.nth(0)`, as they both consume the next element,
841     ///  but is more readable.
842     ///
843     /// **Known problems:** None.
844     ///
845     /// **Example:**
846     ///
847     /// ```rust
848     /// # use std::collections::HashSet;
849     /// // Bad
850     /// # let mut s = HashSet::new();
851     /// # s.insert(1);
852     /// let x = s.iter().nth(0);
853     ///
854     /// // Good
855     /// # let mut s = HashSet::new();
856     /// # s.insert(1);
857     /// let x = s.iter().next();
858     /// ```
859     pub ITER_NTH_ZERO,
860     style,
861     "replace `iter.nth(0)` with `iter.next()`"
862 }
863
864 declare_clippy_lint! {
865     /// **What it does:** Checks for use of `.iter().nth()` (and the related
866     /// `.iter_mut().nth()`) on standard library types with O(1) element access.
867     ///
868     /// **Why is this bad?** `.get()` and `.get_mut()` are more efficient and more
869     /// readable.
870     ///
871     /// **Known problems:** None.
872     ///
873     /// **Example:**
874     /// ```rust
875     /// let some_vec = vec![0, 1, 2, 3];
876     /// let bad_vec = some_vec.iter().nth(3);
877     /// let bad_slice = &some_vec[..].iter().nth(3);
878     /// ```
879     /// The correct use would be:
880     /// ```rust
881     /// let some_vec = vec![0, 1, 2, 3];
882     /// let bad_vec = some_vec.get(3);
883     /// let bad_slice = &some_vec[..].get(3);
884     /// ```
885     pub ITER_NTH,
886     perf,
887     "using `.iter().nth()` on a standard library type with O(1) element access"
888 }
889
890 declare_clippy_lint! {
891     /// **What it does:** Checks for use of `.skip(x).next()` on iterators.
892     ///
893     /// **Why is this bad?** `.nth(x)` is cleaner
894     ///
895     /// **Known problems:** None.
896     ///
897     /// **Example:**
898     /// ```rust
899     /// let some_vec = vec![0, 1, 2, 3];
900     /// let bad_vec = some_vec.iter().skip(3).next();
901     /// let bad_slice = &some_vec[..].iter().skip(3).next();
902     /// ```
903     /// The correct use would be:
904     /// ```rust
905     /// let some_vec = vec![0, 1, 2, 3];
906     /// let bad_vec = some_vec.iter().nth(3);
907     /// let bad_slice = &some_vec[..].iter().nth(3);
908     /// ```
909     pub ITER_SKIP_NEXT,
910     style,
911     "using `.skip(x).next()` on an iterator"
912 }
913
914 declare_clippy_lint! {
915     /// **What it does:** Checks for use of `.get().unwrap()` (or
916     /// `.get_mut().unwrap`) on a standard library type which implements `Index`
917     ///
918     /// **Why is this bad?** Using the Index trait (`[]`) is more clear and more
919     /// concise.
920     ///
921     /// **Known problems:** Not a replacement for error handling: Using either
922     /// `.unwrap()` or the Index trait (`[]`) carries the risk of causing a `panic`
923     /// if the value being accessed is `None`. If the use of `.get().unwrap()` is a
924     /// temporary placeholder for dealing with the `Option` type, then this does
925     /// not mitigate the need for error handling. If there is a chance that `.get()`
926     /// will be `None` in your program, then it is advisable that the `None` case
927     /// is handled in a future refactor instead of using `.unwrap()` or the Index
928     /// trait.
929     ///
930     /// **Example:**
931     /// ```rust
932     /// let mut some_vec = vec![0, 1, 2, 3];
933     /// let last = some_vec.get(3).unwrap();
934     /// *some_vec.get_mut(0).unwrap() = 1;
935     /// ```
936     /// The correct use would be:
937     /// ```rust
938     /// let mut some_vec = vec![0, 1, 2, 3];
939     /// let last = some_vec[3];
940     /// some_vec[0] = 1;
941     /// ```
942     pub GET_UNWRAP,
943     restriction,
944     "using `.get().unwrap()` or `.get_mut().unwrap()` when using `[]` would work instead"
945 }
946
947 declare_clippy_lint! {
948     /// **What it does:** Checks for the use of `.extend(s.chars())` where s is a
949     /// `&str` or `String`.
950     ///
951     /// **Why is this bad?** `.push_str(s)` is clearer
952     ///
953     /// **Known problems:** None.
954     ///
955     /// **Example:**
956     /// ```rust
957     /// let abc = "abc";
958     /// let def = String::from("def");
959     /// let mut s = String::new();
960     /// s.extend(abc.chars());
961     /// s.extend(def.chars());
962     /// ```
963     /// The correct use would be:
964     /// ```rust
965     /// let abc = "abc";
966     /// let def = String::from("def");
967     /// let mut s = String::new();
968     /// s.push_str(abc);
969     /// s.push_str(&def);
970     /// ```
971     pub STRING_EXTEND_CHARS,
972     style,
973     "using `x.extend(s.chars())` where s is a `&str` or `String`"
974 }
975
976 declare_clippy_lint! {
977     /// **What it does:** Checks for the use of `.cloned().collect()` on slice to
978     /// create a `Vec`.
979     ///
980     /// **Why is this bad?** `.to_vec()` is clearer
981     ///
982     /// **Known problems:** None.
983     ///
984     /// **Example:**
985     /// ```rust
986     /// let s = [1, 2, 3, 4, 5];
987     /// let s2: Vec<isize> = s[..].iter().cloned().collect();
988     /// ```
989     /// The better use would be:
990     /// ```rust
991     /// let s = [1, 2, 3, 4, 5];
992     /// let s2: Vec<isize> = s.to_vec();
993     /// ```
994     pub ITER_CLONED_COLLECT,
995     style,
996     "using `.cloned().collect()` on slice to create a `Vec`"
997 }
998
999 declare_clippy_lint! {
1000     /// **What it does:** Checks for usage of `_.chars().last()` or
1001     /// `_.chars().next_back()` on a `str` to check if it ends with a given char.
1002     ///
1003     /// **Why is this bad?** Readability, this can be written more concisely as
1004     /// `_.ends_with(_)`.
1005     ///
1006     /// **Known problems:** None.
1007     ///
1008     /// **Example:**
1009     /// ```rust
1010     /// # let name = "_";
1011     ///
1012     /// // Bad
1013     /// name.chars().last() == Some('_') || name.chars().next_back() == Some('-');
1014     ///
1015     /// // Good
1016     /// name.ends_with('_') || name.ends_with('-');
1017     /// ```
1018     pub CHARS_LAST_CMP,
1019     style,
1020     "using `.chars().last()` or `.chars().next_back()` to check if a string ends with a char"
1021 }
1022
1023 declare_clippy_lint! {
1024     /// **What it does:** Checks for usage of `.as_ref()` or `.as_mut()` where the
1025     /// types before and after the call are the same.
1026     ///
1027     /// **Why is this bad?** The call is unnecessary.
1028     ///
1029     /// **Known problems:** None.
1030     ///
1031     /// **Example:**
1032     /// ```rust
1033     /// # fn do_stuff(x: &[i32]) {}
1034     /// let x: &[i32] = &[1, 2, 3, 4, 5];
1035     /// do_stuff(x.as_ref());
1036     /// ```
1037     /// The correct use would be:
1038     /// ```rust
1039     /// # fn do_stuff(x: &[i32]) {}
1040     /// let x: &[i32] = &[1, 2, 3, 4, 5];
1041     /// do_stuff(x);
1042     /// ```
1043     pub USELESS_ASREF,
1044     complexity,
1045     "using `as_ref` where the types before and after the call are the same"
1046 }
1047
1048 declare_clippy_lint! {
1049     /// **What it does:** Checks for using `fold` when a more succinct alternative exists.
1050     /// Specifically, this checks for `fold`s which could be replaced by `any`, `all`,
1051     /// `sum` or `product`.
1052     ///
1053     /// **Why is this bad?** Readability.
1054     ///
1055     /// **Known problems:** False positive in pattern guards. Will be resolved once
1056     /// non-lexical lifetimes are stable.
1057     ///
1058     /// **Example:**
1059     /// ```rust
1060     /// let _ = (0..3).fold(false, |acc, x| acc || x > 2);
1061     /// ```
1062     /// This could be written as:
1063     /// ```rust
1064     /// let _ = (0..3).any(|x| x > 2);
1065     /// ```
1066     pub UNNECESSARY_FOLD,
1067     style,
1068     "using `fold` when a more succinct alternative exists"
1069 }
1070
1071 declare_clippy_lint! {
1072     /// **What it does:** Checks for `filter_map` calls which could be replaced by `filter` or `map`.
1073     /// More specifically it checks if the closure provided is only performing one of the
1074     /// filter or map operations and suggests the appropriate option.
1075     ///
1076     /// **Why is this bad?** Complexity. The intent is also clearer if only a single
1077     /// operation is being performed.
1078     ///
1079     /// **Known problems:** None
1080     ///
1081     /// **Example:**
1082     /// ```rust
1083     /// let _ = (0..3).filter_map(|x| if x > 2 { Some(x) } else { None });
1084     ///
1085     /// // As there is no transformation of the argument this could be written as:
1086     /// let _ = (0..3).filter(|&x| x > 2);
1087     /// ```
1088     ///
1089     /// ```rust
1090     /// let _ = (0..4).filter_map(|x| Some(x + 1));
1091     ///
1092     /// // As there is no conditional check on the argument this could be written as:
1093     /// let _ = (0..4).map(|x| x + 1);
1094     /// ```
1095     pub UNNECESSARY_FILTER_MAP,
1096     complexity,
1097     "using `filter_map` when a more succinct alternative exists"
1098 }
1099
1100 declare_clippy_lint! {
1101     /// **What it does:** Checks for `into_iter` calls on references which should be replaced by `iter`
1102     /// or `iter_mut`.
1103     ///
1104     /// **Why is this bad?** Readability. Calling `into_iter` on a reference will not move out its
1105     /// content into the resulting iterator, which is confusing. It is better just call `iter` or
1106     /// `iter_mut` directly.
1107     ///
1108     /// **Known problems:** None
1109     ///
1110     /// **Example:**
1111     ///
1112     /// ```rust
1113     /// // Bad
1114     /// let _ = (&vec![3, 4, 5]).into_iter();
1115     ///
1116     /// // Good
1117     /// let _ = (&vec![3, 4, 5]).iter();
1118     /// ```
1119     pub INTO_ITER_ON_REF,
1120     style,
1121     "using `.into_iter()` on a reference"
1122 }
1123
1124 declare_clippy_lint! {
1125     /// **What it does:** Checks for calls to `map` followed by a `count`.
1126     ///
1127     /// **Why is this bad?** It looks suspicious. Maybe `map` was confused with `filter`.
1128     /// If the `map` call is intentional, this should be rewritten. Or, if you intend to
1129     /// drive the iterator to completion, you can just use `for_each` instead.
1130     ///
1131     /// **Known problems:** None
1132     ///
1133     /// **Example:**
1134     ///
1135     /// ```rust
1136     /// let _ = (0..3).map(|x| x + 2).count();
1137     /// ```
1138     pub SUSPICIOUS_MAP,
1139     complexity,
1140     "suspicious usage of map"
1141 }
1142
1143 declare_clippy_lint! {
1144     /// **What it does:** Checks for `MaybeUninit::uninit().assume_init()`.
1145     ///
1146     /// **Why is this bad?** For most types, this is undefined behavior.
1147     ///
1148     /// **Known problems:** For now, we accept empty tuples and tuples / arrays
1149     /// of `MaybeUninit`. There may be other types that allow uninitialized
1150     /// data, but those are not yet rigorously defined.
1151     ///
1152     /// **Example:**
1153     ///
1154     /// ```rust
1155     /// // Beware the UB
1156     /// use std::mem::MaybeUninit;
1157     ///
1158     /// let _: usize = unsafe { MaybeUninit::uninit().assume_init() };
1159     /// ```
1160     ///
1161     /// Note that the following is OK:
1162     ///
1163     /// ```rust
1164     /// use std::mem::MaybeUninit;
1165     ///
1166     /// let _: [MaybeUninit<bool>; 5] = unsafe {
1167     ///     MaybeUninit::uninit().assume_init()
1168     /// };
1169     /// ```
1170     pub UNINIT_ASSUMED_INIT,
1171     correctness,
1172     "`MaybeUninit::uninit().assume_init()`"
1173 }
1174
1175 declare_clippy_lint! {
1176     /// **What it does:** Checks for `.checked_add/sub(x).unwrap_or(MAX/MIN)`.
1177     ///
1178     /// **Why is this bad?** These can be written simply with `saturating_add/sub` methods.
1179     ///
1180     /// **Example:**
1181     ///
1182     /// ```rust
1183     /// # let y: u32 = 0;
1184     /// # let x: u32 = 100;
1185     /// let add = x.checked_add(y).unwrap_or(u32::MAX);
1186     /// let sub = x.checked_sub(y).unwrap_or(u32::MIN);
1187     /// ```
1188     ///
1189     /// can be written using dedicated methods for saturating addition/subtraction as:
1190     ///
1191     /// ```rust
1192     /// # let y: u32 = 0;
1193     /// # let x: u32 = 100;
1194     /// let add = x.saturating_add(y);
1195     /// let sub = x.saturating_sub(y);
1196     /// ```
1197     pub MANUAL_SATURATING_ARITHMETIC,
1198     style,
1199     "`.chcked_add/sub(x).unwrap_or(MAX/MIN)`"
1200 }
1201
1202 declare_clippy_lint! {
1203     /// **What it does:** Checks for `offset(_)`, `wrapping_`{`add`, `sub`}, etc. on raw pointers to
1204     /// zero-sized types
1205     ///
1206     /// **Why is this bad?** This is a no-op, and likely unintended
1207     ///
1208     /// **Known problems:** None
1209     ///
1210     /// **Example:**
1211     /// ```rust
1212     /// unsafe { (&() as *const ()).offset(1) };
1213     /// ```
1214     pub ZST_OFFSET,
1215     correctness,
1216     "Check for offset calculations on raw pointers to zero-sized types"
1217 }
1218
1219 declare_clippy_lint! {
1220     /// **What it does:** Checks for `FileType::is_file()`.
1221     ///
1222     /// **Why is this bad?** When people testing a file type with `FileType::is_file`
1223     /// they are testing whether a path is something they can get bytes from. But
1224     /// `is_file` doesn't cover special file types in unix-like systems, and doesn't cover
1225     /// symlink in windows. Using `!FileType::is_dir()` is a better way to that intention.
1226     ///
1227     /// **Example:**
1228     ///
1229     /// ```rust
1230     /// # || {
1231     /// let metadata = std::fs::metadata("foo.txt")?;
1232     /// let filetype = metadata.file_type();
1233     ///
1234     /// if filetype.is_file() {
1235     ///     // read file
1236     /// }
1237     /// # Ok::<_, std::io::Error>(())
1238     /// # };
1239     /// ```
1240     ///
1241     /// should be written as:
1242     ///
1243     /// ```rust
1244     /// # || {
1245     /// let metadata = std::fs::metadata("foo.txt")?;
1246     /// let filetype = metadata.file_type();
1247     ///
1248     /// if !filetype.is_dir() {
1249     ///     // read file
1250     /// }
1251     /// # Ok::<_, std::io::Error>(())
1252     /// # };
1253     /// ```
1254     pub FILETYPE_IS_FILE,
1255     restriction,
1256     "`FileType::is_file` is not recommended to test for readable file type"
1257 }
1258
1259 declare_clippy_lint! {
1260     /// **What it does:** Checks for usage of `_.as_ref().map(Deref::deref)` or it's aliases (such as String::as_str).
1261     ///
1262     /// **Why is this bad?** Readability, this can be written more concisely as a
1263     /// single method call.
1264     ///
1265     /// **Known problems:** None.
1266     ///
1267     /// **Example:**
1268     /// ```rust
1269     /// # let opt = Some("".to_string());
1270     /// opt.as_ref().map(String::as_str)
1271     /// # ;
1272     /// ```
1273     /// Can be written as
1274     /// ```rust
1275     /// # let opt = Some("".to_string());
1276     /// opt.as_deref()
1277     /// # ;
1278     /// ```
1279     pub OPTION_AS_REF_DEREF,
1280     complexity,
1281     "using `as_ref().map(Deref::deref)`, which is more succinctly expressed as `as_deref()`"
1282 }
1283
1284 declare_clippy_lint! {
1285     /// **What it does:** Checks for usage of `iter().next()` on a Slice or an Array
1286     ///
1287     /// **Why is this bad?** These can be shortened into `.get()`
1288     ///
1289     /// **Known problems:** None.
1290     ///
1291     /// **Example:**
1292     /// ```rust
1293     /// # let a = [1, 2, 3];
1294     /// # let b = vec![1, 2, 3];
1295     /// a[2..].iter().next();
1296     /// b.iter().next();
1297     /// ```
1298     /// should be written as:
1299     /// ```rust
1300     /// # let a = [1, 2, 3];
1301     /// # let b = vec![1, 2, 3];
1302     /// a.get(2);
1303     /// b.get(0);
1304     /// ```
1305     pub ITER_NEXT_SLICE,
1306     style,
1307     "using `.iter().next()` on a sliced array, which can be shortened to just `.get()`"
1308 }
1309
1310 declare_lint_pass!(Methods => [
1311     UNWRAP_USED,
1312     EXPECT_USED,
1313     SHOULD_IMPLEMENT_TRAIT,
1314     WRONG_SELF_CONVENTION,
1315     WRONG_PUB_SELF_CONVENTION,
1316     OK_EXPECT,
1317     MAP_UNWRAP_OR,
1318     RESULT_MAP_OR_INTO_OPTION,
1319     OPTION_MAP_OR_NONE,
1320     BIND_INSTEAD_OF_MAP,
1321     OR_FUN_CALL,
1322     EXPECT_FUN_CALL,
1323     CHARS_NEXT_CMP,
1324     CHARS_LAST_CMP,
1325     CLONE_ON_COPY,
1326     CLONE_ON_REF_PTR,
1327     CLONE_DOUBLE_REF,
1328     INEFFICIENT_TO_STRING,
1329     NEW_RET_NO_SELF,
1330     SINGLE_CHAR_PATTERN,
1331     SEARCH_IS_SOME,
1332     TEMPORARY_CSTRING_AS_PTR,
1333     FILTER_NEXT,
1334     SKIP_WHILE_NEXT,
1335     FILTER_MAP,
1336     FILTER_MAP_NEXT,
1337     FLAT_MAP_IDENTITY,
1338     FIND_MAP,
1339     MAP_FLATTEN,
1340     ITERATOR_STEP_BY_ZERO,
1341     ITER_NEXT_SLICE,
1342     ITER_NTH,
1343     ITER_NTH_ZERO,
1344     ITER_SKIP_NEXT,
1345     GET_UNWRAP,
1346     STRING_EXTEND_CHARS,
1347     ITER_CLONED_COLLECT,
1348     USELESS_ASREF,
1349     UNNECESSARY_FOLD,
1350     UNNECESSARY_FILTER_MAP,
1351     INTO_ITER_ON_REF,
1352     SUSPICIOUS_MAP,
1353     UNINIT_ASSUMED_INIT,
1354     MANUAL_SATURATING_ARITHMETIC,
1355     ZST_OFFSET,
1356     FILETYPE_IS_FILE,
1357     OPTION_AS_REF_DEREF,
1358 ]);
1359
1360 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Methods {
1361     #[allow(clippy::too_many_lines)]
1362     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr<'_>) {
1363         if in_macro(expr.span) {
1364             return;
1365         }
1366
1367         let (method_names, arg_lists, method_spans) = method_calls(expr, 2);
1368         let method_names: Vec<SymbolStr> = method_names.iter().map(|s| s.as_str()).collect();
1369         let method_names: Vec<&str> = method_names.iter().map(|s| &**s).collect();
1370
1371         match method_names.as_slice() {
1372             ["unwrap", "get"] => lint_get_unwrap(cx, expr, arg_lists[1], false),
1373             ["unwrap", "get_mut"] => lint_get_unwrap(cx, expr, arg_lists[1], true),
1374             ["unwrap", ..] => lint_unwrap(cx, expr, arg_lists[0]),
1375             ["expect", "ok"] => lint_ok_expect(cx, expr, arg_lists[1]),
1376             ["expect", ..] => lint_expect(cx, expr, arg_lists[0]),
1377             ["unwrap_or", "map"] => option_map_unwrap_or::lint(cx, expr, arg_lists[1], arg_lists[0], method_spans[1]),
1378             ["unwrap_or_else", "map"] => lint_map_unwrap_or_else(cx, expr, arg_lists[1], arg_lists[0]),
1379             ["map_or", ..] => lint_map_or_none(cx, expr, arg_lists[0]),
1380             ["and_then", ..] => {
1381                 bind_instead_of_map::OptionAndThenSome::lint(cx, expr, arg_lists[0]);
1382                 bind_instead_of_map::ResultAndThenOk::lint(cx, expr, arg_lists[0]);
1383             },
1384             ["or_else", ..] => {
1385                 bind_instead_of_map::ResultOrElseErrInfo::lint(cx, expr, arg_lists[0]);
1386             },
1387             ["next", "filter"] => lint_filter_next(cx, expr, arg_lists[1]),
1388             ["next", "skip_while"] => lint_skip_while_next(cx, expr, arg_lists[1]),
1389             ["next", "iter"] => lint_iter_next(cx, expr, arg_lists[1]),
1390             ["map", "filter"] => lint_filter_map(cx, expr, arg_lists[1], arg_lists[0]),
1391             ["map", "filter_map"] => lint_filter_map_map(cx, expr, arg_lists[1], arg_lists[0]),
1392             ["next", "filter_map"] => lint_filter_map_next(cx, expr, arg_lists[1]),
1393             ["map", "find"] => lint_find_map(cx, expr, arg_lists[1], arg_lists[0]),
1394             ["flat_map", "filter"] => lint_filter_flat_map(cx, expr, arg_lists[1], arg_lists[0]),
1395             ["flat_map", "filter_map"] => lint_filter_map_flat_map(cx, expr, arg_lists[1], arg_lists[0]),
1396             ["flat_map", ..] => lint_flat_map_identity(cx, expr, arg_lists[0], method_spans[0]),
1397             ["flatten", "map"] => lint_map_flatten(cx, expr, arg_lists[1]),
1398             ["is_some", "find"] => lint_search_is_some(cx, expr, "find", arg_lists[1], arg_lists[0], method_spans[1]),
1399             ["is_some", "position"] => {
1400                 lint_search_is_some(cx, expr, "position", arg_lists[1], arg_lists[0], method_spans[1])
1401             },
1402             ["is_some", "rposition"] => {
1403                 lint_search_is_some(cx, expr, "rposition", arg_lists[1], arg_lists[0], method_spans[1])
1404             },
1405             ["extend", ..] => lint_extend(cx, expr, arg_lists[0]),
1406             ["as_ptr", "unwrap" | "expect"] => lint_cstring_as_ptr(cx, expr, &arg_lists[1][0], &arg_lists[0][0]),
1407             ["nth", "iter"] => lint_iter_nth(cx, expr, &arg_lists, false),
1408             ["nth", "iter_mut"] => lint_iter_nth(cx, expr, &arg_lists, true),
1409             ["nth", ..] => lint_iter_nth_zero(cx, expr, arg_lists[0]),
1410             ["step_by", ..] => lint_step_by(cx, expr, arg_lists[0]),
1411             ["next", "skip"] => lint_iter_skip_next(cx, expr),
1412             ["collect", "cloned"] => lint_iter_cloned_collect(cx, expr, arg_lists[1]),
1413             ["as_ref"] => lint_asref(cx, expr, "as_ref", arg_lists[0]),
1414             ["as_mut"] => lint_asref(cx, expr, "as_mut", arg_lists[0]),
1415             ["fold", ..] => lint_unnecessary_fold(cx, expr, arg_lists[0], method_spans[0]),
1416             ["filter_map", ..] => unnecessary_filter_map::lint(cx, expr, arg_lists[0]),
1417             ["count", "map"] => lint_suspicious_map(cx, expr),
1418             ["assume_init"] => lint_maybe_uninit(cx, &arg_lists[0][0], expr),
1419             ["unwrap_or", arith @ ("checked_add" | "checked_sub" | "checked_mul")] => {
1420                 manual_saturating_arithmetic::lint(cx, expr, &arg_lists, &arith["checked_".len()..])
1421             },
1422             ["add" | "offset" | "sub" | "wrapping_offset" | "wrapping_add" | "wrapping_sub"] => {
1423                 check_pointer_offset(cx, expr, arg_lists[0])
1424             },
1425             ["is_file", ..] => lint_filetype_is_file(cx, expr, arg_lists[0]),
1426             ["map", "as_ref"] => lint_option_as_ref_deref(cx, expr, arg_lists[1], arg_lists[0], false),
1427             ["map", "as_mut"] => lint_option_as_ref_deref(cx, expr, arg_lists[1], arg_lists[0], true),
1428             _ => {},
1429         }
1430
1431         match expr.kind {
1432             hir::ExprKind::MethodCall(ref method_call, ref method_span, ref args, _) => {
1433                 lint_or_fun_call(cx, expr, *method_span, &method_call.ident.as_str(), args);
1434                 lint_expect_fun_call(cx, expr, *method_span, &method_call.ident.as_str(), args);
1435
1436                 let self_ty = cx.tables.expr_ty_adjusted(&args[0]);
1437                 if args.len() == 1 && method_call.ident.name == sym!(clone) {
1438                     lint_clone_on_copy(cx, expr, &args[0], self_ty);
1439                     lint_clone_on_ref_ptr(cx, expr, &args[0]);
1440                 }
1441                 if args.len() == 1 && method_call.ident.name == sym!(to_string) {
1442                     inefficient_to_string::lint(cx, expr, &args[0], self_ty);
1443                 }
1444
1445                 match self_ty.kind {
1446                     ty::Ref(_, ty, _) if ty.kind == ty::Str => {
1447                         for &(method, pos) in &PATTERN_METHODS {
1448                             if method_call.ident.name.as_str() == method && args.len() > pos {
1449                                 lint_single_char_pattern(cx, expr, &args[pos]);
1450                             }
1451                         }
1452                     },
1453                     ty::Ref(..) if method_call.ident.name == sym!(into_iter) => {
1454                         lint_into_iter(cx, expr, self_ty, *method_span);
1455                     },
1456                     _ => (),
1457                 }
1458             },
1459             hir::ExprKind::Binary(op, ref lhs, ref rhs)
1460                 if op.node == hir::BinOpKind::Eq || op.node == hir::BinOpKind::Ne =>
1461             {
1462                 let mut info = BinaryExprInfo {
1463                     expr,
1464                     chain: lhs,
1465                     other: rhs,
1466                     eq: op.node == hir::BinOpKind::Eq,
1467                 };
1468                 lint_binary_expr_with_method_call(cx, &mut info);
1469             }
1470             _ => (),
1471         }
1472     }
1473
1474     fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, impl_item: &'tcx hir::ImplItem<'_>) {
1475         if in_external_macro(cx.sess(), impl_item.span) {
1476             return;
1477         }
1478         let name = impl_item.ident.name.as_str();
1479         let parent = cx.tcx.hir().get_parent_item(impl_item.hir_id);
1480         let item = cx.tcx.hir().expect_item(parent);
1481         let def_id = cx.tcx.hir().local_def_id(item.hir_id);
1482         let self_ty = cx.tcx.type_of(def_id);
1483         if_chain! {
1484             if let hir::ImplItemKind::Fn(ref sig, id) = impl_item.kind;
1485             if let Some(first_arg) = iter_input_pats(&sig.decl, cx.tcx.hir().body(id)).next();
1486             if let hir::ItemKind::Impl{ of_trait: None, .. } = item.kind;
1487
1488             let method_def_id = cx.tcx.hir().local_def_id(impl_item.hir_id);
1489             let method_sig = cx.tcx.fn_sig(method_def_id);
1490             let method_sig = cx.tcx.erase_late_bound_regions(&method_sig);
1491
1492             let first_arg_ty = &method_sig.inputs().iter().next();
1493
1494             // check conventions w.r.t. conversion method names and predicates
1495             if let Some(first_arg_ty) = first_arg_ty;
1496
1497             then {
1498                 if cx.access_levels.is_exported(impl_item.hir_id) {
1499                 // check missing trait implementations
1500                     for &(method_name, n_args, fn_header, self_kind, out_type, trait_name) in &TRAIT_METHODS {
1501                         if name == method_name &&
1502                             sig.decl.inputs.len() == n_args &&
1503                             out_type.matches(cx, &sig.decl.output) &&
1504                             self_kind.matches(cx, self_ty, first_arg_ty) &&
1505                             fn_header_equals(*fn_header, sig.header) {
1506                             span_lint(cx, SHOULD_IMPLEMENT_TRAIT, impl_item.span, &format!(
1507                                 "defining a method called `{}` on this type; consider implementing \
1508                                 the `{}` trait or choosing a less ambiguous name", name, trait_name));
1509                         }
1510                     }
1511                 }
1512
1513                 if let Some((ref conv, self_kinds)) = &CONVENTIONS
1514                     .iter()
1515                     .find(|(ref conv, _)| conv.check(&name))
1516                 {
1517                     if !self_kinds.iter().any(|k| k.matches(cx, self_ty, first_arg_ty)) {
1518                         let lint = if item.vis.node.is_pub() {
1519                             WRONG_PUB_SELF_CONVENTION
1520                         } else {
1521                             WRONG_SELF_CONVENTION
1522                         };
1523
1524                         span_lint(
1525                             cx,
1526                             lint,
1527                             first_arg.pat.span,
1528                             &format!("methods called `{}` usually take {}; consider choosing a less ambiguous name",
1529                                 conv,
1530                                 &self_kinds
1531                                     .iter()
1532                                     .map(|k| k.description())
1533                                     .collect::<Vec<_>>()
1534                                     .join(" or ")
1535                             ),
1536                         );
1537                     }
1538                 }
1539             }
1540         }
1541
1542         if let hir::ImplItemKind::Fn(_, _) = impl_item.kind {
1543             let ret_ty = return_ty(cx, impl_item.hir_id);
1544
1545             let contains_self_ty = |ty: Ty<'tcx>| {
1546                 ty.walk().any(|inner| match inner.unpack() {
1547                     GenericArgKind::Type(inner_ty) => TyS::same_type(self_ty, inner_ty),
1548
1549                     GenericArgKind::Lifetime(_) | GenericArgKind::Const(_) => false,
1550                 })
1551             };
1552
1553             // walk the return type and check for Self (this does not check associated types)
1554             if contains_self_ty(ret_ty) {
1555                 return;
1556             }
1557
1558             // if return type is impl trait, check the associated types
1559             if let ty::Opaque(def_id, _) = ret_ty.kind {
1560                 // one of the associated types must be Self
1561                 for predicate in cx.tcx.predicates_of(def_id).predicates {
1562                     if let ty::PredicateKind::Projection(poly_projection_predicate) = predicate.0.kind() {
1563                         let binder = poly_projection_predicate.ty();
1564                         let associated_type = binder.skip_binder();
1565
1566                         // walk the associated type and check for Self
1567                         if contains_self_ty(associated_type) {
1568                             return;
1569                         }
1570                     }
1571                 }
1572             }
1573
1574             if name == "new" && !TyS::same_type(ret_ty, self_ty) {
1575                 span_lint(
1576                     cx,
1577                     NEW_RET_NO_SELF,
1578                     impl_item.span,
1579                     "methods called `new` usually return `Self`",
1580                 );
1581             }
1582         }
1583     }
1584 }
1585
1586 /// Checks for the `OR_FUN_CALL` lint.
1587 #[allow(clippy::too_many_lines)]
1588 fn lint_or_fun_call<'a, 'tcx>(
1589     cx: &LateContext<'a, 'tcx>,
1590     expr: &hir::Expr<'_>,
1591     method_span: Span,
1592     name: &str,
1593     args: &'tcx [hir::Expr<'_>],
1594 ) {
1595     // Searches an expression for method calls or function calls that aren't ctors
1596     struct FunCallFinder<'a, 'tcx> {
1597         cx: &'a LateContext<'a, 'tcx>,
1598         found: bool,
1599     }
1600
1601     impl<'a, 'tcx> intravisit::Visitor<'tcx> for FunCallFinder<'a, 'tcx> {
1602         type Map = Map<'tcx>;
1603
1604         fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
1605             let call_found = match &expr.kind {
1606                 // ignore enum and struct constructors
1607                 hir::ExprKind::Call(..) => !is_ctor_or_promotable_const_function(self.cx, expr),
1608                 hir::ExprKind::MethodCall(..) => true,
1609                 _ => false,
1610             };
1611
1612             if call_found {
1613                 self.found |= true;
1614             }
1615
1616             if !self.found {
1617                 intravisit::walk_expr(self, expr);
1618             }
1619         }
1620
1621         fn nested_visit_map(&mut self) -> intravisit::NestedVisitorMap<Self::Map> {
1622             intravisit::NestedVisitorMap::None
1623         }
1624     }
1625
1626     /// Checks for `unwrap_or(T::new())` or `unwrap_or(T::default())`.
1627     fn check_unwrap_or_default(
1628         cx: &LateContext<'_, '_>,
1629         name: &str,
1630         fun: &hir::Expr<'_>,
1631         self_expr: &hir::Expr<'_>,
1632         arg: &hir::Expr<'_>,
1633         or_has_args: bool,
1634         span: Span,
1635     ) -> bool {
1636         if_chain! {
1637             if !or_has_args;
1638             if name == "unwrap_or";
1639             if let hir::ExprKind::Path(ref qpath) = fun.kind;
1640             let path = &*last_path_segment(qpath).ident.as_str();
1641             if ["default", "new"].contains(&path);
1642             let arg_ty = cx.tables.expr_ty(arg);
1643             if let Some(default_trait_id) = get_trait_def_id(cx, &paths::DEFAULT_TRAIT);
1644             if implements_trait(cx, arg_ty, default_trait_id, &[]);
1645
1646             then {
1647                 let mut applicability = Applicability::MachineApplicable;
1648                 span_lint_and_sugg(
1649                     cx,
1650                     OR_FUN_CALL,
1651                     span,
1652                     &format!("use of `{}` followed by a call to `{}`", name, path),
1653                     "try this",
1654                     format!(
1655                         "{}.unwrap_or_default()",
1656                         snippet_with_applicability(cx, self_expr.span, "_", &mut applicability)
1657                     ),
1658                     applicability,
1659                 );
1660
1661                 true
1662             } else {
1663                 false
1664             }
1665         }
1666     }
1667
1668     /// Checks for `*or(foo())`.
1669     #[allow(clippy::too_many_arguments)]
1670     fn check_general_case<'a, 'tcx>(
1671         cx: &LateContext<'a, 'tcx>,
1672         name: &str,
1673         method_span: Span,
1674         fun_span: Span,
1675         self_expr: &hir::Expr<'_>,
1676         arg: &'tcx hir::Expr<'_>,
1677         or_has_args: bool,
1678         span: Span,
1679     ) {
1680         if let hir::ExprKind::MethodCall(ref path, _, ref args, _) = &arg.kind {
1681             if path.ident.as_str() == "len" {
1682                 let ty = walk_ptrs_ty(cx.tables.expr_ty(&args[0]));
1683
1684                 match ty.kind {
1685                     ty::Slice(_) | ty::Array(_, _) => return,
1686                     _ => (),
1687                 }
1688
1689                 if match_type(cx, ty, &paths::VEC) {
1690                     return;
1691                 }
1692             }
1693         }
1694
1695         // (path, fn_has_argument, methods, suffix)
1696         let know_types: &[(&[_], _, &[_], _)] = &[
1697             (&paths::BTREEMAP_ENTRY, false, &["or_insert"], "with"),
1698             (&paths::HASHMAP_ENTRY, false, &["or_insert"], "with"),
1699             (&paths::OPTION, false, &["map_or", "ok_or", "or", "unwrap_or"], "else"),
1700             (&paths::RESULT, true, &["or", "unwrap_or"], "else"),
1701         ];
1702
1703         if_chain! {
1704             if know_types.iter().any(|k| k.2.contains(&name));
1705
1706             let mut finder = FunCallFinder { cx: &cx, found: false };
1707             if { finder.visit_expr(&arg); finder.found };
1708             if !contains_return(&arg);
1709
1710             let self_ty = cx.tables.expr_ty(self_expr);
1711
1712             if let Some(&(_, fn_has_arguments, poss, suffix)) =
1713                 know_types.iter().find(|&&i| match_type(cx, self_ty, i.0));
1714
1715             if poss.contains(&name);
1716
1717             then {
1718                 let sugg: Cow<'_, _> = match (fn_has_arguments, !or_has_args) {
1719                     (true, _) => format!("|_| {}", snippet_with_macro_callsite(cx, arg.span, "..")).into(),
1720                     (false, false) => format!("|| {}", snippet_with_macro_callsite(cx, arg.span, "..")).into(),
1721                     (false, true) => snippet_with_macro_callsite(cx, fun_span, ".."),
1722                 };
1723                 let span_replace_word = method_span.with_hi(span.hi());
1724                 span_lint_and_sugg(
1725                     cx,
1726                     OR_FUN_CALL,
1727                     span_replace_word,
1728                     &format!("use of `{}` followed by a function call", name),
1729                     "try this",
1730                     format!("{}_{}({})", name, suffix, sugg),
1731                     Applicability::HasPlaceholders,
1732                 );
1733             }
1734         }
1735     }
1736
1737     if args.len() == 2 {
1738         match args[1].kind {
1739             hir::ExprKind::Call(ref fun, ref or_args) => {
1740                 let or_has_args = !or_args.is_empty();
1741                 if !check_unwrap_or_default(cx, name, fun, &args[0], &args[1], or_has_args, expr.span) {
1742                     check_general_case(
1743                         cx,
1744                         name,
1745                         method_span,
1746                         fun.span,
1747                         &args[0],
1748                         &args[1],
1749                         or_has_args,
1750                         expr.span,
1751                     );
1752                 }
1753             },
1754             hir::ExprKind::MethodCall(_, span, ref or_args, _) => check_general_case(
1755                 cx,
1756                 name,
1757                 method_span,
1758                 span,
1759                 &args[0],
1760                 &args[1],
1761                 !or_args.is_empty(),
1762                 expr.span,
1763             ),
1764             _ => {},
1765         }
1766     }
1767 }
1768
1769 /// Checks for the `EXPECT_FUN_CALL` lint.
1770 #[allow(clippy::too_many_lines)]
1771 fn lint_expect_fun_call(
1772     cx: &LateContext<'_, '_>,
1773     expr: &hir::Expr<'_>,
1774     method_span: Span,
1775     name: &str,
1776     args: &[hir::Expr<'_>],
1777 ) {
1778     // Strip `&`, `as_ref()` and `as_str()` off `arg` until we're left with either a `String` or
1779     // `&str`
1780     fn get_arg_root<'a>(cx: &LateContext<'_, '_>, arg: &'a hir::Expr<'a>) -> &'a hir::Expr<'a> {
1781         let mut arg_root = arg;
1782         loop {
1783             arg_root = match &arg_root.kind {
1784                 hir::ExprKind::AddrOf(hir::BorrowKind::Ref, _, expr) => expr,
1785                 hir::ExprKind::MethodCall(method_name, _, call_args, _) => {
1786                     if call_args.len() == 1
1787                         && (method_name.ident.name == sym!(as_str) || method_name.ident.name == sym!(as_ref))
1788                         && {
1789                             let arg_type = cx.tables.expr_ty(&call_args[0]);
1790                             let base_type = walk_ptrs_ty(arg_type);
1791                             base_type.kind == ty::Str || is_type_diagnostic_item(cx, base_type, sym!(string_type))
1792                         }
1793                     {
1794                         &call_args[0]
1795                     } else {
1796                         break;
1797                     }
1798                 },
1799                 _ => break,
1800             };
1801         }
1802         arg_root
1803     }
1804
1805     // Only `&'static str` or `String` can be used directly in the `panic!`. Other types should be
1806     // converted to string.
1807     fn requires_to_string(cx: &LateContext<'_, '_>, arg: &hir::Expr<'_>) -> bool {
1808         let arg_ty = cx.tables.expr_ty(arg);
1809         if is_type_diagnostic_item(cx, arg_ty, sym!(string_type)) {
1810             return false;
1811         }
1812         if let ty::Ref(_, ty, ..) = arg_ty.kind {
1813             if ty.kind == ty::Str && can_be_static_str(cx, arg) {
1814                 return false;
1815             }
1816         };
1817         true
1818     }
1819
1820     // Check if an expression could have type `&'static str`, knowing that it
1821     // has type `&str` for some lifetime.
1822     fn can_be_static_str(cx: &LateContext<'_, '_>, arg: &hir::Expr<'_>) -> bool {
1823         match arg.kind {
1824             hir::ExprKind::Lit(_) => true,
1825             hir::ExprKind::Call(fun, _) => {
1826                 if let hir::ExprKind::Path(ref p) = fun.kind {
1827                     match cx.tables.qpath_res(p, fun.hir_id) {
1828                         hir::def::Res::Def(hir::def::DefKind::Fn | hir::def::DefKind::AssocFn, def_id) => matches!(
1829                             cx.tcx.fn_sig(def_id).output().skip_binder().kind,
1830                             ty::Ref(ty::ReStatic, ..)
1831                         ),
1832                         _ => false,
1833                     }
1834                 } else {
1835                     false
1836                 }
1837             },
1838             hir::ExprKind::MethodCall(..) => cx.tables.type_dependent_def_id(arg.hir_id).map_or(false, |method_id| {
1839                 matches!(
1840                     cx.tcx.fn_sig(method_id).output().skip_binder().kind,
1841                     ty::Ref(ty::ReStatic, ..)
1842                 )
1843             }),
1844             hir::ExprKind::Path(ref p) => match cx.tables.qpath_res(p, arg.hir_id) {
1845                 hir::def::Res::Def(hir::def::DefKind::Const | hir::def::DefKind::Static, _) => true,
1846                 _ => false,
1847             },
1848             _ => false,
1849         }
1850     }
1851
1852     fn generate_format_arg_snippet(
1853         cx: &LateContext<'_, '_>,
1854         a: &hir::Expr<'_>,
1855         applicability: &mut Applicability,
1856     ) -> Vec<String> {
1857         if_chain! {
1858             if let hir::ExprKind::AddrOf(hir::BorrowKind::Ref, _, ref format_arg) = a.kind;
1859             if let hir::ExprKind::Match(ref format_arg_expr, _, _) = format_arg.kind;
1860             if let hir::ExprKind::Tup(ref format_arg_expr_tup) = format_arg_expr.kind;
1861
1862             then {
1863                 format_arg_expr_tup
1864                     .iter()
1865                     .map(|a| snippet_with_applicability(cx, a.span, "..", applicability).into_owned())
1866                     .collect()
1867             } else {
1868                 unreachable!()
1869             }
1870         }
1871     }
1872
1873     fn is_call(node: &hir::ExprKind<'_>) -> bool {
1874         match node {
1875             hir::ExprKind::AddrOf(hir::BorrowKind::Ref, _, expr) => {
1876                 is_call(&expr.kind)
1877             },
1878             hir::ExprKind::Call(..)
1879             | hir::ExprKind::MethodCall(..)
1880             // These variants are debatable or require further examination
1881             | hir::ExprKind::Match(..)
1882             | hir::ExprKind::Block{ .. } => true,
1883             _ => false,
1884         }
1885     }
1886
1887     if args.len() != 2 || name != "expect" || !is_call(&args[1].kind) {
1888         return;
1889     }
1890
1891     let receiver_type = cx.tables.expr_ty_adjusted(&args[0]);
1892     let closure_args = if is_type_diagnostic_item(cx, receiver_type, sym!(option_type)) {
1893         "||"
1894     } else if is_type_diagnostic_item(cx, receiver_type, sym!(result_type)) {
1895         "|_|"
1896     } else {
1897         return;
1898     };
1899
1900     let arg_root = get_arg_root(cx, &args[1]);
1901
1902     let span_replace_word = method_span.with_hi(expr.span.hi());
1903
1904     let mut applicability = Applicability::MachineApplicable;
1905
1906     //Special handling for `format!` as arg_root
1907     if_chain! {
1908         if let hir::ExprKind::Block(block, None) = &arg_root.kind;
1909         if block.stmts.len() == 1;
1910         if let hir::StmtKind::Local(local) = &block.stmts[0].kind;
1911         if let Some(arg_root) = &local.init;
1912         if let hir::ExprKind::Call(ref inner_fun, ref inner_args) = arg_root.kind;
1913         if is_expn_of(inner_fun.span, "format").is_some() && inner_args.len() == 1;
1914         if let hir::ExprKind::Call(_, format_args) = &inner_args[0].kind;
1915         then {
1916             let fmt_spec = &format_args[0];
1917             let fmt_args = &format_args[1];
1918
1919             let mut args = vec![snippet(cx, fmt_spec.span, "..").into_owned()];
1920
1921             args.extend(generate_format_arg_snippet(cx, fmt_args, &mut applicability));
1922
1923             let sugg = args.join(", ");
1924
1925             span_lint_and_sugg(
1926                 cx,
1927                 EXPECT_FUN_CALL,
1928                 span_replace_word,
1929                 &format!("use of `{}` followed by a function call", name),
1930                 "try this",
1931                 format!("unwrap_or_else({} panic!({}))", closure_args, sugg),
1932                 applicability,
1933             );
1934
1935             return;
1936         }
1937     }
1938
1939     let mut arg_root_snippet: Cow<'_, _> = snippet_with_applicability(cx, arg_root.span, "..", &mut applicability);
1940     if requires_to_string(cx, arg_root) {
1941         arg_root_snippet.to_mut().push_str(".to_string()");
1942     }
1943
1944     span_lint_and_sugg(
1945         cx,
1946         EXPECT_FUN_CALL,
1947         span_replace_word,
1948         &format!("use of `{}` followed by a function call", name),
1949         "try this",
1950         format!("unwrap_or_else({} {{ panic!({}) }})", closure_args, arg_root_snippet),
1951         applicability,
1952     );
1953 }
1954
1955 /// Checks for the `CLONE_ON_COPY` lint.
1956 fn lint_clone_on_copy(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, arg: &hir::Expr<'_>, arg_ty: Ty<'_>) {
1957     let ty = cx.tables.expr_ty(expr);
1958     if let ty::Ref(_, inner, _) = arg_ty.kind {
1959         if let ty::Ref(_, innermost, _) = inner.kind {
1960             span_lint_and_then(
1961                 cx,
1962                 CLONE_DOUBLE_REF,
1963                 expr.span,
1964                 "using `clone` on a double-reference; \
1965                 this will copy the reference instead of cloning the inner type",
1966                 |diag| {
1967                     if let Some(snip) = sugg::Sugg::hir_opt(cx, arg) {
1968                         let mut ty = innermost;
1969                         let mut n = 0;
1970                         while let ty::Ref(_, inner, _) = ty.kind {
1971                             ty = inner;
1972                             n += 1;
1973                         }
1974                         let refs: String = iter::repeat('&').take(n + 1).collect();
1975                         let derefs: String = iter::repeat('*').take(n).collect();
1976                         let explicit = format!("<{}{}>::clone({})", refs, ty, snip);
1977                         diag.span_suggestion(
1978                             expr.span,
1979                             "try dereferencing it",
1980                             format!("{}({}{}).clone()", refs, derefs, snip.deref()),
1981                             Applicability::MaybeIncorrect,
1982                         );
1983                         diag.span_suggestion(
1984                             expr.span,
1985                             "or try being explicit if you are sure, that you want to clone a reference",
1986                             explicit,
1987                             Applicability::MaybeIncorrect,
1988                         );
1989                     }
1990                 },
1991             );
1992             return; // don't report clone_on_copy
1993         }
1994     }
1995
1996     if is_copy(cx, ty) {
1997         let snip;
1998         if let Some(snippet) = sugg::Sugg::hir_opt(cx, arg) {
1999             let parent = cx.tcx.hir().get_parent_node(expr.hir_id);
2000             match &cx.tcx.hir().get(parent) {
2001                 hir::Node::Expr(parent) => match parent.kind {
2002                     // &*x is a nop, &x.clone() is not
2003                     hir::ExprKind::AddrOf(..) => return,
2004                     // (*x).func() is useless, x.clone().func() can work in case func borrows mutably
2005                     hir::ExprKind::MethodCall(_, _, parent_args, _) if expr.hir_id == parent_args[0].hir_id => return,
2006
2007                     _ => {},
2008                 },
2009                 hir::Node::Stmt(stmt) => {
2010                     if let hir::StmtKind::Local(ref loc) = stmt.kind {
2011                         if let hir::PatKind::Ref(..) = loc.pat.kind {
2012                             // let ref y = *x borrows x, let ref y = x.clone() does not
2013                             return;
2014                         }
2015                     }
2016                 },
2017                 _ => {},
2018             }
2019
2020             // x.clone() might have dereferenced x, possibly through Deref impls
2021             if cx.tables.expr_ty(arg) == ty {
2022                 snip = Some(("try removing the `clone` call", format!("{}", snippet)));
2023             } else {
2024                 let deref_count = cx
2025                     .tables
2026                     .expr_adjustments(arg)
2027                     .iter()
2028                     .filter(|adj| {
2029                         if let ty::adjustment::Adjust::Deref(_) = adj.kind {
2030                             true
2031                         } else {
2032                             false
2033                         }
2034                     })
2035                     .count();
2036                 let derefs: String = iter::repeat('*').take(deref_count).collect();
2037                 snip = Some(("try dereferencing it", format!("{}{}", derefs, snippet)));
2038             }
2039         } else {
2040             snip = None;
2041         }
2042         span_lint_and_then(cx, CLONE_ON_COPY, expr.span, "using `clone` on a `Copy` type", |diag| {
2043             if let Some((text, snip)) = snip {
2044                 diag.span_suggestion(expr.span, text, snip, Applicability::Unspecified);
2045             }
2046         });
2047     }
2048 }
2049
2050 fn lint_clone_on_ref_ptr(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, arg: &hir::Expr<'_>) {
2051     let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(arg));
2052
2053     if let ty::Adt(_, subst) = obj_ty.kind {
2054         let caller_type = if is_type_diagnostic_item(cx, obj_ty, sym::Rc) {
2055             "Rc"
2056         } else if is_type_diagnostic_item(cx, obj_ty, sym::Arc) {
2057             "Arc"
2058         } else if match_type(cx, obj_ty, &paths::WEAK_RC) || match_type(cx, obj_ty, &paths::WEAK_ARC) {
2059             "Weak"
2060         } else {
2061             return;
2062         };
2063
2064         span_lint_and_sugg(
2065             cx,
2066             CLONE_ON_REF_PTR,
2067             expr.span,
2068             "using `.clone()` on a ref-counted pointer",
2069             "try this",
2070             format!(
2071                 "{}::<{}>::clone(&{})",
2072                 caller_type,
2073                 subst.type_at(0),
2074                 snippet(cx, arg.span, "_")
2075             ),
2076             Applicability::Unspecified, // Sometimes unnecessary ::<_> after Rc/Arc/Weak
2077         );
2078     }
2079 }
2080
2081 fn lint_string_extend(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, args: &[hir::Expr<'_>]) {
2082     let arg = &args[1];
2083     if let Some(arglists) = method_chain_args(arg, &["chars"]) {
2084         let target = &arglists[0][0];
2085         let self_ty = walk_ptrs_ty(cx.tables.expr_ty(target));
2086         let ref_str = if self_ty.kind == ty::Str {
2087             ""
2088         } else if is_type_diagnostic_item(cx, self_ty, sym!(string_type)) {
2089             "&"
2090         } else {
2091             return;
2092         };
2093
2094         let mut applicability = Applicability::MachineApplicable;
2095         span_lint_and_sugg(
2096             cx,
2097             STRING_EXTEND_CHARS,
2098             expr.span,
2099             "calling `.extend(_.chars())`",
2100             "try this",
2101             format!(
2102                 "{}.push_str({}{})",
2103                 snippet_with_applicability(cx, args[0].span, "_", &mut applicability),
2104                 ref_str,
2105                 snippet_with_applicability(cx, target.span, "_", &mut applicability)
2106             ),
2107             applicability,
2108         );
2109     }
2110 }
2111
2112 fn lint_extend(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, args: &[hir::Expr<'_>]) {
2113     let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(&args[0]));
2114     if is_type_diagnostic_item(cx, obj_ty, sym!(string_type)) {
2115         lint_string_extend(cx, expr, args);
2116     }
2117 }
2118
2119 fn lint_cstring_as_ptr(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, source: &hir::Expr<'_>, unwrap: &hir::Expr<'_>) {
2120     if_chain! {
2121         let source_type = cx.tables.expr_ty(source);
2122         if let ty::Adt(def, substs) = source_type.kind;
2123         if cx.tcx.is_diagnostic_item(sym!(result_type), def.did);
2124         if match_type(cx, substs.type_at(0), &paths::CSTRING);
2125         then {
2126             span_lint_and_then(
2127                 cx,
2128                 TEMPORARY_CSTRING_AS_PTR,
2129                 expr.span,
2130                 "you are getting the inner pointer of a temporary `CString`",
2131                 |diag| {
2132                     diag.note("that pointer will be invalid outside this expression");
2133                     diag.span_help(unwrap.span, "assign the `CString` to a variable to extend its lifetime");
2134                 });
2135         }
2136     }
2137 }
2138
2139 fn lint_iter_cloned_collect<'a, 'tcx>(
2140     cx: &LateContext<'a, 'tcx>,
2141     expr: &hir::Expr<'_>,
2142     iter_args: &'tcx [hir::Expr<'_>],
2143 ) {
2144     if_chain! {
2145         if is_type_diagnostic_item(cx, cx.tables.expr_ty(expr), sym!(vec_type));
2146         if let Some(slice) = derefs_to_slice(cx, &iter_args[0], cx.tables.expr_ty(&iter_args[0]));
2147         if let Some(to_replace) = expr.span.trim_start(slice.span.source_callsite());
2148
2149         then {
2150             span_lint_and_sugg(
2151                 cx,
2152                 ITER_CLONED_COLLECT,
2153                 to_replace,
2154                 "called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and \
2155                 more readable",
2156                 "try",
2157                 ".to_vec()".to_string(),
2158                 Applicability::MachineApplicable,
2159             );
2160         }
2161     }
2162 }
2163
2164 fn lint_unnecessary_fold(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, fold_args: &[hir::Expr<'_>], fold_span: Span) {
2165     fn check_fold_with_op(
2166         cx: &LateContext<'_, '_>,
2167         expr: &hir::Expr<'_>,
2168         fold_args: &[hir::Expr<'_>],
2169         fold_span: Span,
2170         op: hir::BinOpKind,
2171         replacement_method_name: &str,
2172         replacement_has_args: bool,
2173     ) {
2174         if_chain! {
2175             // Extract the body of the closure passed to fold
2176             if let hir::ExprKind::Closure(_, _, body_id, _, _) = fold_args[2].kind;
2177             let closure_body = cx.tcx.hir().body(body_id);
2178             let closure_expr = remove_blocks(&closure_body.value);
2179
2180             // Check if the closure body is of the form `acc <op> some_expr(x)`
2181             if let hir::ExprKind::Binary(ref bin_op, ref left_expr, ref right_expr) = closure_expr.kind;
2182             if bin_op.node == op;
2183
2184             // Extract the names of the two arguments to the closure
2185             if let Some(first_arg_ident) = get_arg_name(&closure_body.params[0].pat);
2186             if let Some(second_arg_ident) = get_arg_name(&closure_body.params[1].pat);
2187
2188             if match_var(&*left_expr, first_arg_ident);
2189             if replacement_has_args || match_var(&*right_expr, second_arg_ident);
2190
2191             then {
2192                 let mut applicability = Applicability::MachineApplicable;
2193                 let sugg = if replacement_has_args {
2194                     format!(
2195                         "{replacement}(|{s}| {r})",
2196                         replacement = replacement_method_name,
2197                         s = second_arg_ident,
2198                         r = snippet_with_applicability(cx, right_expr.span, "EXPR", &mut applicability),
2199                     )
2200                 } else {
2201                     format!(
2202                         "{replacement}()",
2203                         replacement = replacement_method_name,
2204                     )
2205                 };
2206
2207                 span_lint_and_sugg(
2208                     cx,
2209                     UNNECESSARY_FOLD,
2210                     fold_span.with_hi(expr.span.hi()),
2211                     // TODO #2371 don't suggest e.g., .any(|x| f(x)) if we can suggest .any(f)
2212                     "this `.fold` can be written more succinctly using another method",
2213                     "try",
2214                     sugg,
2215                     applicability,
2216                 );
2217             }
2218         }
2219     }
2220
2221     // Check that this is a call to Iterator::fold rather than just some function called fold
2222     if !match_trait_method(cx, expr, &paths::ITERATOR) {
2223         return;
2224     }
2225
2226     assert!(
2227         fold_args.len() == 3,
2228         "Expected fold_args to have three entries - the receiver, the initial value and the closure"
2229     );
2230
2231     // Check if the first argument to .fold is a suitable literal
2232     if let hir::ExprKind::Lit(ref lit) = fold_args[1].kind {
2233         match lit.node {
2234             ast::LitKind::Bool(false) => {
2235                 check_fold_with_op(cx, expr, fold_args, fold_span, hir::BinOpKind::Or, "any", true)
2236             },
2237             ast::LitKind::Bool(true) => {
2238                 check_fold_with_op(cx, expr, fold_args, fold_span, hir::BinOpKind::And, "all", true)
2239             },
2240             ast::LitKind::Int(0, _) => {
2241                 check_fold_with_op(cx, expr, fold_args, fold_span, hir::BinOpKind::Add, "sum", false)
2242             },
2243             ast::LitKind::Int(1, _) => {
2244                 check_fold_with_op(cx, expr, fold_args, fold_span, hir::BinOpKind::Mul, "product", false)
2245             },
2246             _ => (),
2247         }
2248     }
2249 }
2250
2251 fn lint_step_by<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &hir::Expr<'_>, args: &'tcx [hir::Expr<'_>]) {
2252     if match_trait_method(cx, expr, &paths::ITERATOR) {
2253         if let Some((Constant::Int(0), _)) = constant(cx, cx.tables, &args[1]) {
2254             span_lint(
2255                 cx,
2256                 ITERATOR_STEP_BY_ZERO,
2257                 expr.span,
2258                 "Iterator::step_by(0) will panic at runtime",
2259             );
2260         }
2261     }
2262 }
2263
2264 fn lint_iter_next<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr<'_>, iter_args: &'tcx [hir::Expr<'_>]) {
2265     let caller_expr = &iter_args[0];
2266
2267     // Skip lint if the `iter().next()` expression is a for loop argument,
2268     // since it is already covered by `&loops::ITER_NEXT_LOOP`
2269     let mut parent_expr_opt = get_parent_expr(cx, expr);
2270     while let Some(parent_expr) = parent_expr_opt {
2271         if higher::for_loop(parent_expr).is_some() {
2272             return;
2273         }
2274         parent_expr_opt = get_parent_expr(cx, parent_expr);
2275     }
2276
2277     if derefs_to_slice(cx, caller_expr, cx.tables.expr_ty(caller_expr)).is_some() {
2278         // caller is a Slice
2279         if_chain! {
2280             if let hir::ExprKind::Index(ref caller_var, ref index_expr) = &caller_expr.kind;
2281             if let Some(higher::Range { start: Some(start_expr), end: None, limits: ast::RangeLimits::HalfOpen })
2282                 = higher::range(cx, index_expr);
2283             if let hir::ExprKind::Lit(ref start_lit) = &start_expr.kind;
2284             if let ast::LitKind::Int(start_idx, _) = start_lit.node;
2285             then {
2286                 let mut applicability = Applicability::MachineApplicable;
2287                 span_lint_and_sugg(
2288                     cx,
2289                     ITER_NEXT_SLICE,
2290                     expr.span,
2291                     "Using `.iter().next()` on a Slice without end index.",
2292                     "try calling",
2293                     format!("{}.get({})", snippet_with_applicability(cx, caller_var.span, "..", &mut applicability), start_idx),
2294                     applicability,
2295                 );
2296             }
2297         }
2298     } else if is_type_diagnostic_item(cx, cx.tables.expr_ty(caller_expr), sym!(vec_type))
2299         || matches!(&walk_ptrs_ty(cx.tables.expr_ty(caller_expr)).kind, ty::Array(_, _))
2300     {
2301         // caller is a Vec or an Array
2302         let mut applicability = Applicability::MachineApplicable;
2303         span_lint_and_sugg(
2304             cx,
2305             ITER_NEXT_SLICE,
2306             expr.span,
2307             "Using `.iter().next()` on an array",
2308             "try calling",
2309             format!(
2310                 "{}.get(0)",
2311                 snippet_with_applicability(cx, caller_expr.span, "..", &mut applicability)
2312             ),
2313             applicability,
2314         );
2315     }
2316 }
2317
2318 fn lint_iter_nth<'a, 'tcx>(
2319     cx: &LateContext<'a, 'tcx>,
2320     expr: &hir::Expr<'_>,
2321     nth_and_iter_args: &[&'tcx [hir::Expr<'tcx>]],
2322     is_mut: bool,
2323 ) {
2324     let iter_args = nth_and_iter_args[1];
2325     let mut_str = if is_mut { "_mut" } else { "" };
2326     let caller_type = if derefs_to_slice(cx, &iter_args[0], cx.tables.expr_ty(&iter_args[0])).is_some() {
2327         "slice"
2328     } else if is_type_diagnostic_item(cx, cx.tables.expr_ty(&iter_args[0]), sym!(vec_type)) {
2329         "Vec"
2330     } else if is_type_diagnostic_item(cx, cx.tables.expr_ty(&iter_args[0]), sym!(vecdeque_type)) {
2331         "VecDeque"
2332     } else {
2333         let nth_args = nth_and_iter_args[0];
2334         lint_iter_nth_zero(cx, expr, &nth_args);
2335         return; // caller is not a type that we want to lint
2336     };
2337
2338     span_lint_and_help(
2339         cx,
2340         ITER_NTH,
2341         expr.span,
2342         &format!("called `.iter{0}().nth()` on a {1}", mut_str, caller_type),
2343         None,
2344         &format!("calling `.get{}()` is both faster and more readable", mut_str),
2345     );
2346 }
2347
2348 fn lint_iter_nth_zero<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &hir::Expr<'_>, nth_args: &'tcx [hir::Expr<'_>]) {
2349     if_chain! {
2350         if match_trait_method(cx, expr, &paths::ITERATOR);
2351         if let Some((Constant::Int(0), _)) = constant(cx, cx.tables, &nth_args[1]);
2352         then {
2353             let mut applicability = Applicability::MachineApplicable;
2354             span_lint_and_sugg(
2355                 cx,
2356                 ITER_NTH_ZERO,
2357                 expr.span,
2358                 "called `.nth(0)` on a `std::iter::Iterator`",
2359                 "try calling",
2360                 format!("{}.next()", snippet_with_applicability(cx, nth_args[0].span, "..", &mut applicability)),
2361                 applicability,
2362             );
2363         }
2364     }
2365 }
2366
2367 fn lint_get_unwrap<'a, 'tcx>(
2368     cx: &LateContext<'a, 'tcx>,
2369     expr: &hir::Expr<'_>,
2370     get_args: &'tcx [hir::Expr<'_>],
2371     is_mut: bool,
2372 ) {
2373     // Note: we don't want to lint `get_mut().unwrap` for `HashMap` or `BTreeMap`,
2374     // because they do not implement `IndexMut`
2375     let mut applicability = Applicability::MachineApplicable;
2376     let expr_ty = cx.tables.expr_ty(&get_args[0]);
2377     let get_args_str = if get_args.len() > 1 {
2378         snippet_with_applicability(cx, get_args[1].span, "_", &mut applicability)
2379     } else {
2380         return; // not linting on a .get().unwrap() chain or variant
2381     };
2382     let mut needs_ref;
2383     let caller_type = if derefs_to_slice(cx, &get_args[0], expr_ty).is_some() {
2384         needs_ref = get_args_str.parse::<usize>().is_ok();
2385         "slice"
2386     } else if is_type_diagnostic_item(cx, expr_ty, sym!(vec_type)) {
2387         needs_ref = get_args_str.parse::<usize>().is_ok();
2388         "Vec"
2389     } else if is_type_diagnostic_item(cx, expr_ty, sym!(vecdeque_type)) {
2390         needs_ref = get_args_str.parse::<usize>().is_ok();
2391         "VecDeque"
2392     } else if !is_mut && is_type_diagnostic_item(cx, expr_ty, sym!(hashmap_type)) {
2393         needs_ref = true;
2394         "HashMap"
2395     } else if !is_mut && match_type(cx, expr_ty, &paths::BTREEMAP) {
2396         needs_ref = true;
2397         "BTreeMap"
2398     } else {
2399         return; // caller is not a type that we want to lint
2400     };
2401
2402     let mut span = expr.span;
2403
2404     // Handle the case where the result is immediately dereferenced
2405     // by not requiring ref and pulling the dereference into the
2406     // suggestion.
2407     if_chain! {
2408         if needs_ref;
2409         if let Some(parent) = get_parent_expr(cx, expr);
2410         if let hir::ExprKind::Unary(hir::UnOp::UnDeref, _) = parent.kind;
2411         then {
2412             needs_ref = false;
2413             span = parent.span;
2414         }
2415     }
2416
2417     let mut_str = if is_mut { "_mut" } else { "" };
2418     let borrow_str = if !needs_ref {
2419         ""
2420     } else if is_mut {
2421         "&mut "
2422     } else {
2423         "&"
2424     };
2425
2426     span_lint_and_sugg(
2427         cx,
2428         GET_UNWRAP,
2429         span,
2430         &format!(
2431             "called `.get{0}().unwrap()` on a {1}. Using `[]` is more clear and more concise",
2432             mut_str, caller_type
2433         ),
2434         "try this",
2435         format!(
2436             "{}{}[{}]",
2437             borrow_str,
2438             snippet_with_applicability(cx, get_args[0].span, "_", &mut applicability),
2439             get_args_str
2440         ),
2441         applicability,
2442     );
2443 }
2444
2445 fn lint_iter_skip_next(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>) {
2446     // lint if caller of skip is an Iterator
2447     if match_trait_method(cx, expr, &paths::ITERATOR) {
2448         span_lint_and_help(
2449             cx,
2450             ITER_SKIP_NEXT,
2451             expr.span,
2452             "called `skip(x).next()` on an iterator",
2453             None,
2454             "this is more succinctly expressed by calling `nth(x)`",
2455         );
2456     }
2457 }
2458
2459 fn derefs_to_slice<'a, 'tcx>(
2460     cx: &LateContext<'a, 'tcx>,
2461     expr: &'tcx hir::Expr<'tcx>,
2462     ty: Ty<'tcx>,
2463 ) -> Option<&'tcx hir::Expr<'tcx>> {
2464     fn may_slice<'a>(cx: &LateContext<'_, 'a>, ty: Ty<'a>) -> bool {
2465         match ty.kind {
2466             ty::Slice(_) => true,
2467             ty::Adt(def, _) if def.is_box() => may_slice(cx, ty.boxed_ty()),
2468             ty::Adt(..) => is_type_diagnostic_item(cx, ty, sym!(vec_type)),
2469             ty::Array(_, size) => {
2470                 if let Some(size) = size.try_eval_usize(cx.tcx, cx.param_env) {
2471                     size < 32
2472                 } else {
2473                     false
2474                 }
2475             },
2476             ty::Ref(_, inner, _) => may_slice(cx, inner),
2477             _ => false,
2478         }
2479     }
2480
2481     if let hir::ExprKind::MethodCall(ref path, _, ref args, _) = expr.kind {
2482         if path.ident.name == sym!(iter) && may_slice(cx, cx.tables.expr_ty(&args[0])) {
2483             Some(&args[0])
2484         } else {
2485             None
2486         }
2487     } else {
2488         match ty.kind {
2489             ty::Slice(_) => Some(expr),
2490             ty::Adt(def, _) if def.is_box() && may_slice(cx, ty.boxed_ty()) => Some(expr),
2491             ty::Ref(_, inner, _) => {
2492                 if may_slice(cx, inner) {
2493                     Some(expr)
2494                 } else {
2495                     None
2496                 }
2497             },
2498             _ => None,
2499         }
2500     }
2501 }
2502
2503 /// lint use of `unwrap()` for `Option`s and `Result`s
2504 fn lint_unwrap(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, unwrap_args: &[hir::Expr<'_>]) {
2505     let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(&unwrap_args[0]));
2506
2507     let mess = if is_type_diagnostic_item(cx, obj_ty, sym!(option_type)) {
2508         Some((UNWRAP_USED, "an Option", "None"))
2509     } else if is_type_diagnostic_item(cx, obj_ty, sym!(result_type)) {
2510         Some((UNWRAP_USED, "a Result", "Err"))
2511     } else {
2512         None
2513     };
2514
2515     if let Some((lint, kind, none_value)) = mess {
2516         span_lint_and_help(
2517             cx,
2518             lint,
2519             expr.span,
2520             &format!("used `unwrap()` on `{}` value", kind,),
2521             None,
2522             &format!(
2523                 "if you don't want to handle the `{}` case gracefully, consider \
2524                 using `expect()` to provide a better panic message",
2525                 none_value,
2526             ),
2527         );
2528     }
2529 }
2530
2531 /// lint use of `expect()` for `Option`s and `Result`s
2532 fn lint_expect(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, expect_args: &[hir::Expr<'_>]) {
2533     let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(&expect_args[0]));
2534
2535     let mess = if is_type_diagnostic_item(cx, obj_ty, sym!(option_type)) {
2536         Some((EXPECT_USED, "an Option", "None"))
2537     } else if is_type_diagnostic_item(cx, obj_ty, sym!(result_type)) {
2538         Some((EXPECT_USED, "a Result", "Err"))
2539     } else {
2540         None
2541     };
2542
2543     if let Some((lint, kind, none_value)) = mess {
2544         span_lint_and_help(
2545             cx,
2546             lint,
2547             expr.span,
2548             &format!("used `expect()` on `{}` value", kind,),
2549             None,
2550             &format!("if this value is an `{}`, it will panic", none_value,),
2551         );
2552     }
2553 }
2554
2555 /// lint use of `ok().expect()` for `Result`s
2556 fn lint_ok_expect(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, ok_args: &[hir::Expr<'_>]) {
2557     if_chain! {
2558         // lint if the caller of `ok()` is a `Result`
2559         if is_type_diagnostic_item(cx, cx.tables.expr_ty(&ok_args[0]), sym!(result_type));
2560         let result_type = cx.tables.expr_ty(&ok_args[0]);
2561         if let Some(error_type) = get_error_type(cx, result_type);
2562         if has_debug_impl(error_type, cx);
2563
2564         then {
2565             span_lint_and_help(
2566                 cx,
2567                 OK_EXPECT,
2568                 expr.span,
2569                 "called `ok().expect()` on a `Result` value",
2570                 None,
2571                 "you can call `expect()` directly on the `Result`",
2572             );
2573         }
2574     }
2575 }
2576
2577 /// lint use of `map().flatten()` for `Iterators` and 'Options'
2578 fn lint_map_flatten<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr<'_>, map_args: &'tcx [hir::Expr<'_>]) {
2579     // lint if caller of `.map().flatten()` is an Iterator
2580     if match_trait_method(cx, expr, &paths::ITERATOR) {
2581         let msg = "called `map(..).flatten()` on an `Iterator`. \
2582                     This is more succinctly expressed by calling `.flat_map(..)`";
2583         let self_snippet = snippet(cx, map_args[0].span, "..");
2584         let func_snippet = snippet(cx, map_args[1].span, "..");
2585         let hint = format!("{0}.flat_map({1})", self_snippet, func_snippet);
2586         span_lint_and_sugg(
2587             cx,
2588             MAP_FLATTEN,
2589             expr.span,
2590             msg,
2591             "try using `flat_map` instead",
2592             hint,
2593             Applicability::MachineApplicable,
2594         );
2595     }
2596
2597     // lint if caller of `.map().flatten()` is an Option
2598     if is_type_diagnostic_item(cx, cx.tables.expr_ty(&map_args[0]), sym!(option_type)) {
2599         let msg = "called `map(..).flatten()` on an `Option`. \
2600                     This is more succinctly expressed by calling `.and_then(..)`";
2601         let self_snippet = snippet(cx, map_args[0].span, "..");
2602         let func_snippet = snippet(cx, map_args[1].span, "..");
2603         let hint = format!("{0}.and_then({1})", self_snippet, func_snippet);
2604         span_lint_and_sugg(
2605             cx,
2606             MAP_FLATTEN,
2607             expr.span,
2608             msg,
2609             "try using `and_then` instead",
2610             hint,
2611             Applicability::MachineApplicable,
2612         );
2613     }
2614 }
2615
2616 /// lint use of `map().unwrap_or_else()` for `Option`s and `Result`s
2617 fn lint_map_unwrap_or_else<'a, 'tcx>(
2618     cx: &LateContext<'a, 'tcx>,
2619     expr: &'tcx hir::Expr<'_>,
2620     map_args: &'tcx [hir::Expr<'_>],
2621     unwrap_args: &'tcx [hir::Expr<'_>],
2622 ) {
2623     // lint if the caller of `map()` is an `Option`
2624     let is_option = is_type_diagnostic_item(cx, cx.tables.expr_ty(&map_args[0]), sym!(option_type));
2625     let is_result = is_type_diagnostic_item(cx, cx.tables.expr_ty(&map_args[0]), sym!(result_type));
2626
2627     if is_option || is_result {
2628         // Don't make a suggestion that may fail to compile due to mutably borrowing
2629         // the same variable twice.
2630         let map_mutated_vars = mutated_variables(&map_args[0], cx);
2631         let unwrap_mutated_vars = mutated_variables(&unwrap_args[1], cx);
2632         if let (Some(map_mutated_vars), Some(unwrap_mutated_vars)) = (map_mutated_vars, unwrap_mutated_vars) {
2633             if map_mutated_vars.intersection(&unwrap_mutated_vars).next().is_some() {
2634                 return;
2635             }
2636         } else {
2637             return;
2638         }
2639
2640         // lint message
2641         let msg = if is_option {
2642             "called `map(f).unwrap_or_else(g)` on an `Option` value. This can be done more directly by calling \
2643             `map_or_else(g, f)` instead"
2644         } else {
2645             "called `map(f).unwrap_or_else(g)` on a `Result` value. This can be done more directly by calling \
2646             `.map_or_else(g, f)` instead"
2647         };
2648         // get snippets for args to map() and unwrap_or_else()
2649         let map_snippet = snippet(cx, map_args[1].span, "..");
2650         let unwrap_snippet = snippet(cx, unwrap_args[1].span, "..");
2651         // lint, with note if neither arg is > 1 line and both map() and
2652         // unwrap_or_else() have the same span
2653         let multiline = map_snippet.lines().count() > 1 || unwrap_snippet.lines().count() > 1;
2654         let same_span = map_args[1].span.ctxt() == unwrap_args[1].span.ctxt();
2655         if same_span && !multiline {
2656             span_lint_and_note(
2657                 cx,
2658                 MAP_UNWRAP_OR,
2659                 expr.span,
2660                 msg,
2661                 None,
2662                 &format!(
2663                     "replace `map({0}).unwrap_or_else({1})` with `map_or_else({1}, {0})`",
2664                     map_snippet, unwrap_snippet,
2665                 ),
2666             );
2667         } else if same_span && multiline {
2668             span_lint(cx, MAP_UNWRAP_OR, expr.span, msg);
2669         };
2670     }
2671 }
2672
2673 /// lint use of `_.map_or(None, _)` for `Option`s and `Result`s
2674 fn lint_map_or_none<'a, 'tcx>(
2675     cx: &LateContext<'a, 'tcx>,
2676     expr: &'tcx hir::Expr<'_>,
2677     map_or_args: &'tcx [hir::Expr<'_>],
2678 ) {
2679     let is_option = is_type_diagnostic_item(cx, cx.tables.expr_ty(&map_or_args[0]), sym!(option_type));
2680     let is_result = is_type_diagnostic_item(cx, cx.tables.expr_ty(&map_or_args[0]), sym!(result_type));
2681
2682     // There are two variants of this `map_or` lint:
2683     // (1) using `map_or` as an adapter from `Result<T,E>` to `Option<T>`
2684     // (2) using `map_or` as a combinator instead of `and_then`
2685     //
2686     // (For this lint) we don't care if any other type calls `map_or`
2687     if !is_option && !is_result {
2688         return;
2689     }
2690
2691     let (lint_name, msg, instead, hint) = {
2692         let default_arg_is_none = if let hir::ExprKind::Path(ref qpath) = map_or_args[1].kind {
2693             match_qpath(qpath, &paths::OPTION_NONE)
2694         } else {
2695             return;
2696         };
2697
2698         if !default_arg_is_none {
2699             // nothing to lint!
2700             return;
2701         }
2702
2703         let f_arg_is_some = if let hir::ExprKind::Path(ref qpath) = map_or_args[2].kind {
2704             match_qpath(qpath, &paths::OPTION_SOME)
2705         } else {
2706             false
2707         };
2708
2709         if is_option {
2710             let self_snippet = snippet(cx, map_or_args[0].span, "..");
2711             let func_snippet = snippet(cx, map_or_args[2].span, "..");
2712             let msg = "called `map_or(None, f)` on an `Option` value. This can be done more directly by calling \
2713                        `and_then(f)` instead";
2714             (
2715                 OPTION_MAP_OR_NONE,
2716                 msg,
2717                 "try using `and_then` instead",
2718                 format!("{0}.and_then({1})", self_snippet, func_snippet),
2719             )
2720         } else if f_arg_is_some {
2721             let msg = "called `map_or(None, Some)` on a `Result` value. This can be done more directly by calling \
2722                        `ok()` instead";
2723             let self_snippet = snippet(cx, map_or_args[0].span, "..");
2724             (
2725                 RESULT_MAP_OR_INTO_OPTION,
2726                 msg,
2727                 "try using `ok` instead",
2728                 format!("{0}.ok()", self_snippet),
2729             )
2730         } else {
2731             // nothing to lint!
2732             return;
2733         }
2734     };
2735
2736     span_lint_and_sugg(
2737         cx,
2738         lint_name,
2739         expr.span,
2740         msg,
2741         instead,
2742         hint,
2743         Applicability::MachineApplicable,
2744     );
2745 }
2746
2747 /// lint use of `filter().next()` for `Iterators`
2748 fn lint_filter_next<'a, 'tcx>(
2749     cx: &LateContext<'a, 'tcx>,
2750     expr: &'tcx hir::Expr<'_>,
2751     filter_args: &'tcx [hir::Expr<'_>],
2752 ) {
2753     // lint if caller of `.filter().next()` is an Iterator
2754     if match_trait_method(cx, expr, &paths::ITERATOR) {
2755         let msg = "called `filter(p).next()` on an `Iterator`. This is more succinctly expressed by calling \
2756                    `.find(p)` instead.";
2757         let filter_snippet = snippet(cx, filter_args[1].span, "..");
2758         if filter_snippet.lines().count() <= 1 {
2759             // add note if not multi-line
2760             span_lint_and_note(
2761                 cx,
2762                 FILTER_NEXT,
2763                 expr.span,
2764                 msg,
2765                 None,
2766                 &format!("replace `filter({0}).next()` with `find({0})`", filter_snippet),
2767             );
2768         } else {
2769             span_lint(cx, FILTER_NEXT, expr.span, msg);
2770         }
2771     }
2772 }
2773
2774 /// lint use of `skip_while().next()` for `Iterators`
2775 fn lint_skip_while_next<'a, 'tcx>(
2776     cx: &LateContext<'a, 'tcx>,
2777     expr: &'tcx hir::Expr<'_>,
2778     _skip_while_args: &'tcx [hir::Expr<'_>],
2779 ) {
2780     // lint if caller of `.skip_while().next()` is an Iterator
2781     if match_trait_method(cx, expr, &paths::ITERATOR) {
2782         span_lint_and_help(
2783             cx,
2784             SKIP_WHILE_NEXT,
2785             expr.span,
2786             "called `skip_while(p).next()` on an `Iterator`",
2787             None,
2788             "this is more succinctly expressed by calling `.find(!p)` instead",
2789         );
2790     }
2791 }
2792
2793 /// lint use of `filter().map()` for `Iterators`
2794 fn lint_filter_map<'a, 'tcx>(
2795     cx: &LateContext<'a, 'tcx>,
2796     expr: &'tcx hir::Expr<'_>,
2797     _filter_args: &'tcx [hir::Expr<'_>],
2798     _map_args: &'tcx [hir::Expr<'_>],
2799 ) {
2800     // lint if caller of `.filter().map()` is an Iterator
2801     if match_trait_method(cx, expr, &paths::ITERATOR) {
2802         let msg = "called `filter(p).map(q)` on an `Iterator`";
2803         let hint = "this is more succinctly expressed by calling `.filter_map(..)` instead";
2804         span_lint_and_help(cx, FILTER_MAP, expr.span, msg, None, hint);
2805     }
2806 }
2807
2808 /// lint use of `filter_map().next()` for `Iterators`
2809 fn lint_filter_map_next<'a, 'tcx>(
2810     cx: &LateContext<'a, 'tcx>,
2811     expr: &'tcx hir::Expr<'_>,
2812     filter_args: &'tcx [hir::Expr<'_>],
2813 ) {
2814     if match_trait_method(cx, expr, &paths::ITERATOR) {
2815         let msg = "called `filter_map(p).next()` on an `Iterator`. This is more succinctly expressed by calling \
2816                    `.find_map(p)` instead.";
2817         let filter_snippet = snippet(cx, filter_args[1].span, "..");
2818         if filter_snippet.lines().count() <= 1 {
2819             span_lint_and_note(
2820                 cx,
2821                 FILTER_MAP_NEXT,
2822                 expr.span,
2823                 msg,
2824                 None,
2825                 &format!("replace `filter_map({0}).next()` with `find_map({0})`", filter_snippet),
2826             );
2827         } else {
2828             span_lint(cx, FILTER_MAP_NEXT, expr.span, msg);
2829         }
2830     }
2831 }
2832
2833 /// lint use of `find().map()` for `Iterators`
2834 fn lint_find_map<'a, 'tcx>(
2835     cx: &LateContext<'a, 'tcx>,
2836     expr: &'tcx hir::Expr<'_>,
2837     _find_args: &'tcx [hir::Expr<'_>],
2838     map_args: &'tcx [hir::Expr<'_>],
2839 ) {
2840     // lint if caller of `.filter().map()` is an Iterator
2841     if match_trait_method(cx, &map_args[0], &paths::ITERATOR) {
2842         let msg = "called `find(p).map(q)` on an `Iterator`";
2843         let hint = "this is more succinctly expressed by calling `.find_map(..)` instead";
2844         span_lint_and_help(cx, FIND_MAP, expr.span, msg, None, hint);
2845     }
2846 }
2847
2848 /// lint use of `filter_map().map()` for `Iterators`
2849 fn lint_filter_map_map<'a, 'tcx>(
2850     cx: &LateContext<'a, 'tcx>,
2851     expr: &'tcx hir::Expr<'_>,
2852     _filter_args: &'tcx [hir::Expr<'_>],
2853     _map_args: &'tcx [hir::Expr<'_>],
2854 ) {
2855     // lint if caller of `.filter().map()` is an Iterator
2856     if match_trait_method(cx, expr, &paths::ITERATOR) {
2857         let msg = "called `filter_map(p).map(q)` on an `Iterator`";
2858         let hint = "this is more succinctly expressed by only calling `.filter_map(..)` instead";
2859         span_lint_and_help(cx, FILTER_MAP, expr.span, msg, None, hint);
2860     }
2861 }
2862
2863 /// lint use of `filter().flat_map()` for `Iterators`
2864 fn lint_filter_flat_map<'a, 'tcx>(
2865     cx: &LateContext<'a, 'tcx>,
2866     expr: &'tcx hir::Expr<'_>,
2867     _filter_args: &'tcx [hir::Expr<'_>],
2868     _map_args: &'tcx [hir::Expr<'_>],
2869 ) {
2870     // lint if caller of `.filter().flat_map()` is an Iterator
2871     if match_trait_method(cx, expr, &paths::ITERATOR) {
2872         let msg = "called `filter(p).flat_map(q)` on an `Iterator`";
2873         let hint = "this is more succinctly expressed by calling `.flat_map(..)` \
2874                     and filtering by returning `iter::empty()`";
2875         span_lint_and_help(cx, FILTER_MAP, expr.span, msg, None, hint);
2876     }
2877 }
2878
2879 /// lint use of `filter_map().flat_map()` for `Iterators`
2880 fn lint_filter_map_flat_map<'a, 'tcx>(
2881     cx: &LateContext<'a, 'tcx>,
2882     expr: &'tcx hir::Expr<'_>,
2883     _filter_args: &'tcx [hir::Expr<'_>],
2884     _map_args: &'tcx [hir::Expr<'_>],
2885 ) {
2886     // lint if caller of `.filter_map().flat_map()` is an Iterator
2887     if match_trait_method(cx, expr, &paths::ITERATOR) {
2888         let msg = "called `filter_map(p).flat_map(q)` on an `Iterator`";
2889         let hint = "this is more succinctly expressed by calling `.flat_map(..)` \
2890                     and filtering by returning `iter::empty()`";
2891         span_lint_and_help(cx, FILTER_MAP, expr.span, msg, None, hint);
2892     }
2893 }
2894
2895 /// lint use of `flat_map` for `Iterators` where `flatten` would be sufficient
2896 fn lint_flat_map_identity<'a, 'tcx>(
2897     cx: &LateContext<'a, 'tcx>,
2898     expr: &'tcx hir::Expr<'_>,
2899     flat_map_args: &'tcx [hir::Expr<'_>],
2900     flat_map_span: Span,
2901 ) {
2902     if match_trait_method(cx, expr, &paths::ITERATOR) {
2903         let arg_node = &flat_map_args[1].kind;
2904
2905         let apply_lint = |message: &str| {
2906             span_lint_and_sugg(
2907                 cx,
2908                 FLAT_MAP_IDENTITY,
2909                 flat_map_span.with_hi(expr.span.hi()),
2910                 message,
2911                 "try",
2912                 "flatten()".to_string(),
2913                 Applicability::MachineApplicable,
2914             );
2915         };
2916
2917         if_chain! {
2918             if let hir::ExprKind::Closure(_, _, body_id, _, _) = arg_node;
2919             let body = cx.tcx.hir().body(*body_id);
2920
2921             if let hir::PatKind::Binding(_, _, binding_ident, _) = body.params[0].pat.kind;
2922             if let hir::ExprKind::Path(hir::QPath::Resolved(_, ref path)) = body.value.kind;
2923
2924             if path.segments.len() == 1;
2925             if path.segments[0].ident.as_str() == binding_ident.as_str();
2926
2927             then {
2928                 apply_lint("called `flat_map(|x| x)` on an `Iterator`");
2929             }
2930         }
2931
2932         if_chain! {
2933             if let hir::ExprKind::Path(ref qpath) = arg_node;
2934
2935             if match_qpath(qpath, &paths::STD_CONVERT_IDENTITY);
2936
2937             then {
2938                 apply_lint("called `flat_map(std::convert::identity)` on an `Iterator`");
2939             }
2940         }
2941     }
2942 }
2943
2944 /// lint searching an Iterator followed by `is_some()`
2945 fn lint_search_is_some<'a, 'tcx>(
2946     cx: &LateContext<'a, 'tcx>,
2947     expr: &'tcx hir::Expr<'_>,
2948     search_method: &str,
2949     search_args: &'tcx [hir::Expr<'_>],
2950     is_some_args: &'tcx [hir::Expr<'_>],
2951     method_span: Span,
2952 ) {
2953     // lint if caller of search is an Iterator
2954     if match_trait_method(cx, &is_some_args[0], &paths::ITERATOR) {
2955         let msg = format!(
2956             "called `is_some()` after searching an `Iterator` with {}. This is more succinctly \
2957              expressed by calling `any()`.",
2958             search_method
2959         );
2960         let search_snippet = snippet(cx, search_args[1].span, "..");
2961         if search_snippet.lines().count() <= 1 {
2962             // suggest `any(|x| ..)` instead of `any(|&x| ..)` for `find(|&x| ..).is_some()`
2963             // suggest `any(|..| *..)` instead of `any(|..| **..)` for `find(|..| **..).is_some()`
2964             let any_search_snippet = if_chain! {
2965                 if search_method == "find";
2966                 if let hir::ExprKind::Closure(_, _, body_id, ..) = search_args[1].kind;
2967                 let closure_body = cx.tcx.hir().body(body_id);
2968                 if let Some(closure_arg) = closure_body.params.get(0);
2969                 then {
2970                     if let hir::PatKind::Ref(..) = closure_arg.pat.kind {
2971                         Some(search_snippet.replacen('&', "", 1))
2972                     } else if let Some(name) = get_arg_name(&closure_arg.pat) {
2973                         Some(search_snippet.replace(&format!("*{}", name), &name.as_str()))
2974                     } else {
2975                         None
2976                     }
2977                 } else {
2978                     None
2979                 }
2980             };
2981             // add note if not multi-line
2982             span_lint_and_sugg(
2983                 cx,
2984                 SEARCH_IS_SOME,
2985                 method_span.with_hi(expr.span.hi()),
2986                 &msg,
2987                 "try this",
2988                 format!(
2989                     "any({})",
2990                     any_search_snippet.as_ref().map_or(&*search_snippet, String::as_str)
2991                 ),
2992                 Applicability::MachineApplicable,
2993             );
2994         } else {
2995             span_lint(cx, SEARCH_IS_SOME, expr.span, &msg);
2996         }
2997     }
2998 }
2999
3000 /// Used for `lint_binary_expr_with_method_call`.
3001 #[derive(Copy, Clone)]
3002 struct BinaryExprInfo<'a> {
3003     expr: &'a hir::Expr<'a>,
3004     chain: &'a hir::Expr<'a>,
3005     other: &'a hir::Expr<'a>,
3006     eq: bool,
3007 }
3008
3009 /// Checks for the `CHARS_NEXT_CMP` and `CHARS_LAST_CMP` lints.
3010 fn lint_binary_expr_with_method_call(cx: &LateContext<'_, '_>, info: &mut BinaryExprInfo<'_>) {
3011     macro_rules! lint_with_both_lhs_and_rhs {
3012         ($func:ident, $cx:expr, $info:ident) => {
3013             if !$func($cx, $info) {
3014                 ::std::mem::swap(&mut $info.chain, &mut $info.other);
3015                 if $func($cx, $info) {
3016                     return;
3017                 }
3018             }
3019         };
3020     }
3021
3022     lint_with_both_lhs_and_rhs!(lint_chars_next_cmp, cx, info);
3023     lint_with_both_lhs_and_rhs!(lint_chars_last_cmp, cx, info);
3024     lint_with_both_lhs_and_rhs!(lint_chars_next_cmp_with_unwrap, cx, info);
3025     lint_with_both_lhs_and_rhs!(lint_chars_last_cmp_with_unwrap, cx, info);
3026 }
3027
3028 /// Wrapper fn for `CHARS_NEXT_CMP` and `CHARS_LAST_CMP` lints.
3029 fn lint_chars_cmp(
3030     cx: &LateContext<'_, '_>,
3031     info: &BinaryExprInfo<'_>,
3032     chain_methods: &[&str],
3033     lint: &'static Lint,
3034     suggest: &str,
3035 ) -> bool {
3036     if_chain! {
3037         if let Some(args) = method_chain_args(info.chain, chain_methods);
3038         if let hir::ExprKind::Call(ref fun, ref arg_char) = info.other.kind;
3039         if arg_char.len() == 1;
3040         if let hir::ExprKind::Path(ref qpath) = fun.kind;
3041         if let Some(segment) = single_segment_path(qpath);
3042         if segment.ident.name == sym!(Some);
3043         then {
3044             let mut applicability = Applicability::MachineApplicable;
3045             let self_ty = walk_ptrs_ty(cx.tables.expr_ty_adjusted(&args[0][0]));
3046
3047             if self_ty.kind != ty::Str {
3048                 return false;
3049             }
3050
3051             span_lint_and_sugg(
3052                 cx,
3053                 lint,
3054                 info.expr.span,
3055                 &format!("you should use the `{}` method", suggest),
3056                 "like this",
3057                 format!("{}{}.{}({})",
3058                         if info.eq { "" } else { "!" },
3059                         snippet_with_applicability(cx, args[0][0].span, "_", &mut applicability),
3060                         suggest,
3061                         snippet_with_applicability(cx, arg_char[0].span, "_", &mut applicability)),
3062                 applicability,
3063             );
3064
3065             return true;
3066         }
3067     }
3068
3069     false
3070 }
3071
3072 /// Checks for the `CHARS_NEXT_CMP` lint.
3073 fn lint_chars_next_cmp<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo<'_>) -> bool {
3074     lint_chars_cmp(cx, info, &["chars", "next"], CHARS_NEXT_CMP, "starts_with")
3075 }
3076
3077 /// Checks for the `CHARS_LAST_CMP` lint.
3078 fn lint_chars_last_cmp<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo<'_>) -> bool {
3079     if lint_chars_cmp(cx, info, &["chars", "last"], CHARS_LAST_CMP, "ends_with") {
3080         true
3081     } else {
3082         lint_chars_cmp(cx, info, &["chars", "next_back"], CHARS_LAST_CMP, "ends_with")
3083     }
3084 }
3085
3086 /// Wrapper fn for `CHARS_NEXT_CMP` and `CHARS_LAST_CMP` lints with `unwrap()`.
3087 fn lint_chars_cmp_with_unwrap<'a, 'tcx>(
3088     cx: &LateContext<'a, 'tcx>,
3089     info: &BinaryExprInfo<'_>,
3090     chain_methods: &[&str],
3091     lint: &'static Lint,
3092     suggest: &str,
3093 ) -> bool {
3094     if_chain! {
3095         if let Some(args) = method_chain_args(info.chain, chain_methods);
3096         if let hir::ExprKind::Lit(ref lit) = info.other.kind;
3097         if let ast::LitKind::Char(c) = lit.node;
3098         then {
3099             let mut applicability = Applicability::MachineApplicable;
3100             span_lint_and_sugg(
3101                 cx,
3102                 lint,
3103                 info.expr.span,
3104                 &format!("you should use the `{}` method", suggest),
3105                 "like this",
3106                 format!("{}{}.{}('{}')",
3107                         if info.eq { "" } else { "!" },
3108                         snippet_with_applicability(cx, args[0][0].span, "_", &mut applicability),
3109                         suggest,
3110                         c),
3111                 applicability,
3112             );
3113
3114             true
3115         } else {
3116             false
3117         }
3118     }
3119 }
3120
3121 /// Checks for the `CHARS_NEXT_CMP` lint with `unwrap()`.
3122 fn lint_chars_next_cmp_with_unwrap<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo<'_>) -> bool {
3123     lint_chars_cmp_with_unwrap(cx, info, &["chars", "next", "unwrap"], CHARS_NEXT_CMP, "starts_with")
3124 }
3125
3126 /// Checks for the `CHARS_LAST_CMP` lint with `unwrap()`.
3127 fn lint_chars_last_cmp_with_unwrap<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo<'_>) -> bool {
3128     if lint_chars_cmp_with_unwrap(cx, info, &["chars", "last", "unwrap"], CHARS_LAST_CMP, "ends_with") {
3129         true
3130     } else {
3131         lint_chars_cmp_with_unwrap(cx, info, &["chars", "next_back", "unwrap"], CHARS_LAST_CMP, "ends_with")
3132     }
3133 }
3134
3135 /// lint for length-1 `str`s for methods in `PATTERN_METHODS`
3136 fn lint_single_char_pattern<'a, 'tcx>(
3137     cx: &LateContext<'a, 'tcx>,
3138     _expr: &'tcx hir::Expr<'_>,
3139     arg: &'tcx hir::Expr<'_>,
3140 ) {
3141     if_chain! {
3142         if let hir::ExprKind::Lit(lit) = &arg.kind;
3143         if let ast::LitKind::Str(r, style) = lit.node;
3144         if r.as_str().len() == 1;
3145         then {
3146             let mut applicability = Applicability::MachineApplicable;
3147             let snip = snippet_with_applicability(cx, arg.span, "..", &mut applicability);
3148             let ch = if let ast::StrStyle::Raw(nhash) = style {
3149                 let nhash = nhash as usize;
3150                 // for raw string: r##"a"##
3151                 &snip[(nhash + 2)..(snip.len() - 1 - nhash)]
3152             } else {
3153                 // for regular string: "a"
3154                 &snip[1..(snip.len() - 1)]
3155             };
3156             let hint = format!("'{}'", if ch == "'" { "\\'" } else { ch });
3157             span_lint_and_sugg(
3158                 cx,
3159                 SINGLE_CHAR_PATTERN,
3160                 arg.span,
3161                 "single-character string constant used as pattern",
3162                 "try using a `char` instead",
3163                 hint,
3164                 applicability,
3165             );
3166         }
3167     }
3168 }
3169
3170 /// Checks for the `USELESS_ASREF` lint.
3171 fn lint_asref(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, call_name: &str, as_ref_args: &[hir::Expr<'_>]) {
3172     // when we get here, we've already checked that the call name is "as_ref" or "as_mut"
3173     // check if the call is to the actual `AsRef` or `AsMut` trait
3174     if match_trait_method(cx, expr, &paths::ASREF_TRAIT) || match_trait_method(cx, expr, &paths::ASMUT_TRAIT) {
3175         // check if the type after `as_ref` or `as_mut` is the same as before
3176         let recvr = &as_ref_args[0];
3177         let rcv_ty = cx.tables.expr_ty(recvr);
3178         let res_ty = cx.tables.expr_ty(expr);
3179         let (base_res_ty, res_depth) = walk_ptrs_ty_depth(res_ty);
3180         let (base_rcv_ty, rcv_depth) = walk_ptrs_ty_depth(rcv_ty);
3181         if base_rcv_ty == base_res_ty && rcv_depth >= res_depth {
3182             // allow the `as_ref` or `as_mut` if it is followed by another method call
3183             if_chain! {
3184                 if let Some(parent) = get_parent_expr(cx, expr);
3185                 if let hir::ExprKind::MethodCall(_, ref span, _, _) = parent.kind;
3186                 if span != &expr.span;
3187                 then {
3188                     return;
3189                 }
3190             }
3191
3192             let mut applicability = Applicability::MachineApplicable;
3193             span_lint_and_sugg(
3194                 cx,
3195                 USELESS_ASREF,
3196                 expr.span,
3197                 &format!("this call to `{}` does nothing", call_name),
3198                 "try this",
3199                 snippet_with_applicability(cx, recvr.span, "_", &mut applicability).to_string(),
3200                 applicability,
3201             );
3202         }
3203     }
3204 }
3205
3206 fn ty_has_iter_method(cx: &LateContext<'_, '_>, self_ref_ty: Ty<'_>) -> Option<(&'static str, &'static str)> {
3207     has_iter_method(cx, self_ref_ty).map(|ty_name| {
3208         let mutbl = match self_ref_ty.kind {
3209             ty::Ref(_, _, mutbl) => mutbl,
3210             _ => unreachable!(),
3211         };
3212         let method_name = match mutbl {
3213             hir::Mutability::Not => "iter",
3214             hir::Mutability::Mut => "iter_mut",
3215         };
3216         (ty_name, method_name)
3217     })
3218 }
3219
3220 fn lint_into_iter(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, self_ref_ty: Ty<'_>, method_span: Span) {
3221     if !match_trait_method(cx, expr, &paths::INTO_ITERATOR) {
3222         return;
3223     }
3224     if let Some((kind, method_name)) = ty_has_iter_method(cx, self_ref_ty) {
3225         span_lint_and_sugg(
3226             cx,
3227             INTO_ITER_ON_REF,
3228             method_span,
3229             &format!(
3230                 "this `.into_iter()` call is equivalent to `.{}()` and will not move the `{}`",
3231                 method_name, kind,
3232             ),
3233             "call directly",
3234             method_name.to_string(),
3235             Applicability::MachineApplicable,
3236         );
3237     }
3238 }
3239
3240 /// lint for `MaybeUninit::uninit().assume_init()` (we already have the latter)
3241 fn lint_maybe_uninit(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, outer: &hir::Expr<'_>) {
3242     if_chain! {
3243         if let hir::ExprKind::Call(ref callee, ref args) = expr.kind;
3244         if args.is_empty();
3245         if let hir::ExprKind::Path(ref path) = callee.kind;
3246         if match_qpath(path, &paths::MEM_MAYBEUNINIT_UNINIT);
3247         if !is_maybe_uninit_ty_valid(cx, cx.tables.expr_ty_adjusted(outer));
3248         then {
3249             span_lint(
3250                 cx,
3251                 UNINIT_ASSUMED_INIT,
3252                 outer.span,
3253                 "this call for this type may be undefined behavior"
3254             );
3255         }
3256     }
3257 }
3258
3259 fn is_maybe_uninit_ty_valid(cx: &LateContext<'_, '_>, ty: Ty<'_>) -> bool {
3260     match ty.kind {
3261         ty::Array(ref component, _) => is_maybe_uninit_ty_valid(cx, component),
3262         ty::Tuple(ref types) => types.types().all(|ty| is_maybe_uninit_ty_valid(cx, ty)),
3263         ty::Adt(ref adt, _) => match_def_path(cx, adt.did, &paths::MEM_MAYBEUNINIT),
3264         _ => false,
3265     }
3266 }
3267
3268 fn lint_suspicious_map(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>) {
3269     span_lint_and_help(
3270         cx,
3271         SUSPICIOUS_MAP,
3272         expr.span,
3273         "this call to `map()` won't have an effect on the call to `count()`",
3274         None,
3275         "make sure you did not confuse `map` with `filter` or `for_each`",
3276     );
3277 }
3278
3279 /// lint use of `_.as_ref().map(Deref::deref)` for `Option`s
3280 fn lint_option_as_ref_deref<'a, 'tcx>(
3281     cx: &LateContext<'a, 'tcx>,
3282     expr: &hir::Expr<'_>,
3283     as_ref_args: &[hir::Expr<'_>],
3284     map_args: &[hir::Expr<'_>],
3285     is_mut: bool,
3286 ) {
3287     let same_mutability = |m| (is_mut && m == &hir::Mutability::Mut) || (!is_mut && m == &hir::Mutability::Not);
3288
3289     let option_ty = cx.tables.expr_ty(&as_ref_args[0]);
3290     if !is_type_diagnostic_item(cx, option_ty, sym!(option_type)) {
3291         return;
3292     }
3293
3294     let deref_aliases: [&[&str]; 9] = [
3295         &paths::DEREF_TRAIT_METHOD,
3296         &paths::DEREF_MUT_TRAIT_METHOD,
3297         &paths::CSTRING_AS_C_STR,
3298         &paths::OS_STRING_AS_OS_STR,
3299         &paths::PATH_BUF_AS_PATH,
3300         &paths::STRING_AS_STR,
3301         &paths::STRING_AS_MUT_STR,
3302         &paths::VEC_AS_SLICE,
3303         &paths::VEC_AS_MUT_SLICE,
3304     ];
3305
3306     let is_deref = match map_args[1].kind {
3307         hir::ExprKind::Path(ref expr_qpath) => deref_aliases.iter().any(|path| match_qpath(expr_qpath, path)),
3308         hir::ExprKind::Closure(_, _, body_id, _, _) => {
3309             let closure_body = cx.tcx.hir().body(body_id);
3310             let closure_expr = remove_blocks(&closure_body.value);
3311
3312             match &closure_expr.kind {
3313                 hir::ExprKind::MethodCall(_, _, args, _) => {
3314                     if_chain! {
3315                         if args.len() == 1;
3316                         if let hir::ExprKind::Path(qpath) = &args[0].kind;
3317                         if let hir::def::Res::Local(local_id) = cx.tables.qpath_res(qpath, args[0].hir_id);
3318                         if closure_body.params[0].pat.hir_id == local_id;
3319                         let adj = cx.tables.expr_adjustments(&args[0]).iter().map(|x| &x.kind).collect::<Box<[_]>>();
3320                         if let [ty::adjustment::Adjust::Deref(None), ty::adjustment::Adjust::Borrow(_)] = *adj;
3321                         then {
3322                             let method_did = cx.tables.type_dependent_def_id(closure_expr.hir_id).unwrap();
3323                             deref_aliases.iter().any(|path| match_def_path(cx, method_did, path))
3324                         } else {
3325                             false
3326                         }
3327                     }
3328                 },
3329                 hir::ExprKind::AddrOf(hir::BorrowKind::Ref, m, ref inner) if same_mutability(m) => {
3330                     if_chain! {
3331                         if let hir::ExprKind::Unary(hir::UnOp::UnDeref, ref inner1) = inner.kind;
3332                         if let hir::ExprKind::Unary(hir::UnOp::UnDeref, ref inner2) = inner1.kind;
3333                         if let hir::ExprKind::Path(ref qpath) = inner2.kind;
3334                         if let hir::def::Res::Local(local_id) = cx.tables.qpath_res(qpath, inner2.hir_id);
3335                         then {
3336                             closure_body.params[0].pat.hir_id == local_id
3337                         } else {
3338                             false
3339                         }
3340                     }
3341                 },
3342                 _ => false,
3343             }
3344         },
3345         _ => false,
3346     };
3347
3348     if is_deref {
3349         let current_method = if is_mut {
3350             format!(".as_mut().map({})", snippet(cx, map_args[1].span, ".."))
3351         } else {
3352             format!(".as_ref().map({})", snippet(cx, map_args[1].span, ".."))
3353         };
3354         let method_hint = if is_mut { "as_deref_mut" } else { "as_deref" };
3355         let hint = format!("{}.{}()", snippet(cx, as_ref_args[0].span, ".."), method_hint);
3356         let suggestion = format!("try using {} instead", method_hint);
3357
3358         let msg = format!(
3359             "called `{0}` on an Option value. This can be done more directly \
3360             by calling `{1}` instead",
3361             current_method, hint
3362         );
3363         span_lint_and_sugg(
3364             cx,
3365             OPTION_AS_REF_DEREF,
3366             expr.span,
3367             &msg,
3368             &suggestion,
3369             hint,
3370             Applicability::MachineApplicable,
3371         );
3372     }
3373 }
3374
3375 /// Given a `Result<T, E>` type, return its error type (`E`).
3376 fn get_error_type<'a>(cx: &LateContext<'_, '_>, ty: Ty<'a>) -> Option<Ty<'a>> {
3377     match ty.kind {
3378         ty::Adt(_, substs) if is_type_diagnostic_item(cx, ty, sym!(result_type)) => substs.types().nth(1),
3379         _ => None,
3380     }
3381 }
3382
3383 /// This checks whether a given type is known to implement Debug.
3384 fn has_debug_impl<'a, 'b>(ty: Ty<'a>, cx: &LateContext<'b, 'a>) -> bool {
3385     cx.tcx
3386         .get_diagnostic_item(sym::debug_trait)
3387         .map_or(false, |debug| implements_trait(cx, ty, debug, &[]))
3388 }
3389
3390 enum Convention {
3391     Eq(&'static str),
3392     StartsWith(&'static str),
3393 }
3394
3395 #[rustfmt::skip]
3396 const CONVENTIONS: [(Convention, &[SelfKind]); 7] = [
3397     (Convention::Eq("new"), &[SelfKind::No]),
3398     (Convention::StartsWith("as_"), &[SelfKind::Ref, SelfKind::RefMut]),
3399     (Convention::StartsWith("from_"), &[SelfKind::No]),
3400     (Convention::StartsWith("into_"), &[SelfKind::Value]),
3401     (Convention::StartsWith("is_"), &[SelfKind::Ref, SelfKind::No]),
3402     (Convention::Eq("to_mut"), &[SelfKind::RefMut]),
3403     (Convention::StartsWith("to_"), &[SelfKind::Ref]),
3404 ];
3405
3406 const FN_HEADER: hir::FnHeader = hir::FnHeader {
3407     unsafety: hir::Unsafety::Normal,
3408     constness: hir::Constness::NotConst,
3409     asyncness: hir::IsAsync::NotAsync,
3410     abi: rustc_target::spec::abi::Abi::Rust,
3411 };
3412
3413 #[rustfmt::skip]
3414 const TRAIT_METHODS: [(&str, usize, &hir::FnHeader, SelfKind, OutType, &str); 30] = [
3415     ("add", 2, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::Add"),
3416     ("as_mut", 1, &FN_HEADER, SelfKind::RefMut, OutType::Ref, "std::convert::AsMut"),
3417     ("as_ref", 1, &FN_HEADER, SelfKind::Ref, OutType::Ref, "std::convert::AsRef"),
3418     ("bitand", 2, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::BitAnd"),
3419     ("bitor", 2, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::BitOr"),
3420     ("bitxor", 2, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::BitXor"),
3421     ("borrow", 1, &FN_HEADER, SelfKind::Ref, OutType::Ref, "std::borrow::Borrow"),
3422     ("borrow_mut", 1, &FN_HEADER, SelfKind::RefMut, OutType::Ref, "std::borrow::BorrowMut"),
3423     ("clone", 1, &FN_HEADER, SelfKind::Ref, OutType::Any, "std::clone::Clone"),
3424     ("cmp", 2, &FN_HEADER, SelfKind::Ref, OutType::Any, "std::cmp::Ord"),
3425     ("default", 0, &FN_HEADER, SelfKind::No, OutType::Any, "std::default::Default"),
3426     ("deref", 1, &FN_HEADER, SelfKind::Ref, OutType::Ref, "std::ops::Deref"),
3427     ("deref_mut", 1, &FN_HEADER, SelfKind::RefMut, OutType::Ref, "std::ops::DerefMut"),
3428     ("div", 2, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::Div"),
3429     ("drop", 1, &FN_HEADER, SelfKind::RefMut, OutType::Unit, "std::ops::Drop"),
3430     ("eq", 2, &FN_HEADER, SelfKind::Ref, OutType::Bool, "std::cmp::PartialEq"),
3431     ("from_iter", 1, &FN_HEADER, SelfKind::No, OutType::Any, "std::iter::FromIterator"),
3432     ("from_str", 1, &FN_HEADER, SelfKind::No, OutType::Any, "std::str::FromStr"),
3433     ("hash", 2, &FN_HEADER, SelfKind::Ref, OutType::Unit, "std::hash::Hash"),
3434     ("index", 2, &FN_HEADER, SelfKind::Ref, OutType::Ref, "std::ops::Index"),
3435     ("index_mut", 2, &FN_HEADER, SelfKind::RefMut, OutType::Ref, "std::ops::IndexMut"),
3436     ("into_iter", 1, &FN_HEADER, SelfKind::Value, OutType::Any, "std::iter::IntoIterator"),
3437     ("mul", 2, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::Mul"),
3438     ("neg", 1, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::Neg"),
3439     ("next", 1, &FN_HEADER, SelfKind::RefMut, OutType::Any, "std::iter::Iterator"),
3440     ("not", 1, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::Not"),
3441     ("rem", 2, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::Rem"),
3442     ("shl", 2, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::Shl"),
3443     ("shr", 2, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::Shr"),
3444     ("sub", 2, &FN_HEADER, SelfKind::Value, OutType::Any, "std::ops::Sub"),
3445 ];
3446
3447 #[rustfmt::skip]
3448 const PATTERN_METHODS: [(&str, usize); 17] = [
3449     ("contains", 1),
3450     ("starts_with", 1),
3451     ("ends_with", 1),
3452     ("find", 1),
3453     ("rfind", 1),
3454     ("split", 1),
3455     ("rsplit", 1),
3456     ("split_terminator", 1),
3457     ("rsplit_terminator", 1),
3458     ("splitn", 2),
3459     ("rsplitn", 2),
3460     ("matches", 1),
3461     ("rmatches", 1),
3462     ("match_indices", 1),
3463     ("rmatch_indices", 1),
3464     ("trim_start_matches", 1),
3465     ("trim_end_matches", 1),
3466 ];
3467
3468 #[derive(Clone, Copy, PartialEq, Debug)]
3469 enum SelfKind {
3470     Value,
3471     Ref,
3472     RefMut,
3473     No,
3474 }
3475
3476 impl SelfKind {
3477     fn matches<'a>(self, cx: &LateContext<'_, 'a>, parent_ty: Ty<'a>, ty: Ty<'a>) -> bool {
3478         fn matches_value<'a>(cx: &LateContext<'_, 'a>, parent_ty: Ty<'_>, ty: Ty<'_>) -> bool {
3479             if ty == parent_ty {
3480                 true
3481             } else if ty.is_box() {
3482                 ty.boxed_ty() == parent_ty
3483             } else if is_type_diagnostic_item(cx, ty, sym::Rc) || is_type_diagnostic_item(cx, ty, sym::Arc) {
3484                 if let ty::Adt(_, substs) = ty.kind {
3485                     substs.types().next().map_or(false, |t| t == parent_ty)
3486                 } else {
3487                     false
3488                 }
3489             } else {
3490                 false
3491             }
3492         }
3493
3494         fn matches_ref<'a>(
3495             cx: &LateContext<'_, 'a>,
3496             mutability: hir::Mutability,
3497             parent_ty: Ty<'a>,
3498             ty: Ty<'a>,
3499         ) -> bool {
3500             if let ty::Ref(_, t, m) = ty.kind {
3501                 return m == mutability && t == parent_ty;
3502             }
3503
3504             let trait_path = match mutability {
3505                 hir::Mutability::Not => &paths::ASREF_TRAIT,
3506                 hir::Mutability::Mut => &paths::ASMUT_TRAIT,
3507             };
3508
3509             let trait_def_id = match get_trait_def_id(cx, trait_path) {
3510                 Some(did) => did,
3511                 None => return false,
3512             };
3513             implements_trait(cx, ty, trait_def_id, &[parent_ty.into()])
3514         }
3515
3516         match self {
3517             Self::Value => matches_value(cx, parent_ty, ty),
3518             Self::Ref => matches_ref(cx, hir::Mutability::Not, parent_ty, ty) || ty == parent_ty && is_copy(cx, ty),
3519             Self::RefMut => matches_ref(cx, hir::Mutability::Mut, parent_ty, ty),
3520             Self::No => ty != parent_ty,
3521         }
3522     }
3523
3524     #[must_use]
3525     fn description(self) -> &'static str {
3526         match self {
3527             Self::Value => "self by value",
3528             Self::Ref => "self by reference",
3529             Self::RefMut => "self by mutable reference",
3530             Self::No => "no self",
3531         }
3532     }
3533 }
3534
3535 impl Convention {
3536     #[must_use]
3537     fn check(&self, other: &str) -> bool {
3538         match *self {
3539             Self::Eq(this) => this == other,
3540             Self::StartsWith(this) => other.starts_with(this) && this != other,
3541         }
3542     }
3543 }
3544
3545 impl fmt::Display for Convention {
3546     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
3547         match *self {
3548             Self::Eq(this) => this.fmt(f),
3549             Self::StartsWith(this) => this.fmt(f).and_then(|_| '*'.fmt(f)),
3550         }
3551     }
3552 }
3553
3554 #[derive(Clone, Copy)]
3555 enum OutType {
3556     Unit,
3557     Bool,
3558     Any,
3559     Ref,
3560 }
3561
3562 impl OutType {
3563     fn matches(self, cx: &LateContext<'_, '_>, ty: &hir::FnRetTy<'_>) -> bool {
3564         let is_unit = |ty: &hir::Ty<'_>| SpanlessEq::new(cx).eq_ty_kind(&ty.kind, &hir::TyKind::Tup(&[]));
3565         match (self, ty) {
3566             (Self::Unit, &hir::FnRetTy::DefaultReturn(_)) => true,
3567             (Self::Unit, &hir::FnRetTy::Return(ref ty)) if is_unit(ty) => true,
3568             (Self::Bool, &hir::FnRetTy::Return(ref ty)) if is_bool(ty) => true,
3569             (Self::Any, &hir::FnRetTy::Return(ref ty)) if !is_unit(ty) => true,
3570             (Self::Ref, &hir::FnRetTy::Return(ref ty)) => matches!(ty.kind, hir::TyKind::Rptr(_, _)),
3571             _ => false,
3572         }
3573     }
3574 }
3575
3576 fn is_bool(ty: &hir::Ty<'_>) -> bool {
3577     if let hir::TyKind::Path(ref p) = ty.kind {
3578         match_qpath(p, &["bool"])
3579     } else {
3580         false
3581     }
3582 }
3583
3584 // Returns `true` if `expr` contains a return expression
3585 fn contains_return(expr: &hir::Expr<'_>) -> bool {
3586     struct RetCallFinder {
3587         found: bool,
3588     }
3589
3590     impl<'tcx> intravisit::Visitor<'tcx> for RetCallFinder {
3591         type Map = Map<'tcx>;
3592
3593         fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
3594             if self.found {
3595                 return;
3596             }
3597             if let hir::ExprKind::Ret(..) = &expr.kind {
3598                 self.found = true;
3599             } else {
3600                 intravisit::walk_expr(self, expr);
3601             }
3602         }
3603
3604         fn nested_visit_map(&mut self) -> intravisit::NestedVisitorMap<Self::Map> {
3605             intravisit::NestedVisitorMap::None
3606         }
3607     }
3608
3609     let mut visitor = RetCallFinder { found: false };
3610     visitor.visit_expr(expr);
3611     visitor.found
3612 }
3613
3614 fn check_pointer_offset(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, args: &[hir::Expr<'_>]) {
3615     if_chain! {
3616         if args.len() == 2;
3617         if let ty::RawPtr(ty::TypeAndMut { ref ty, .. }) = cx.tables.expr_ty(&args[0]).kind;
3618         if let Ok(layout) = cx.tcx.layout_of(cx.param_env.and(ty));
3619         if layout.is_zst();
3620         then {
3621             span_lint(cx, ZST_OFFSET, expr.span, "offset calculation on zero-sized value");
3622         }
3623     }
3624 }
3625
3626 fn lint_filetype_is_file(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>, args: &[hir::Expr<'_>]) {
3627     let ty = cx.tables.expr_ty(&args[0]);
3628
3629     if !match_type(cx, ty, &paths::FILE_TYPE) {
3630         return;
3631     }
3632
3633     let span: Span;
3634     let verb: &str;
3635     let lint_unary: &str;
3636     let help_unary: &str;
3637     if_chain! {
3638         if let Some(parent) = get_parent_expr(cx, expr);
3639         if let hir::ExprKind::Unary(op, _) = parent.kind;
3640         if op == hir::UnOp::UnNot;
3641         then {
3642             lint_unary = "!";
3643             verb = "denies";
3644             help_unary = "";
3645             span = parent.span;
3646         } else {
3647             lint_unary = "";
3648             verb = "covers";
3649             help_unary = "!";
3650             span = expr.span;
3651         }
3652     }
3653     let lint_msg = format!("`{}FileType::is_file()` only {} regular files", lint_unary, verb);
3654     let help_msg = format!("use `{}FileType::is_dir()` instead", help_unary);
3655     span_lint_and_help(cx, FILETYPE_IS_FILE, span, &lint_msg, None, &help_msg);
3656 }
3657
3658 fn fn_header_equals(expected: hir::FnHeader, actual: hir::FnHeader) -> bool {
3659     expected.constness == actual.constness
3660         && expected.unsafety == actual.unsafety
3661         && expected.asyncness == actual.asyncness
3662 }