]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/drop_bounds.rs
Auto merge of #4809 - iankronquist:patch-1, r=flip1995
[rust.git] / clippy_lints / src / drop_bounds.rs
1 use crate::utils::{match_def_path, paths, span_lint};
2 use if_chain::if_chain;
3 use rustc_hir::*;
4 use rustc_lint::LateLintPass;
5 use rustc_session::{declare_lint_pass, declare_tool_lint};
6
7 declare_clippy_lint! {
8     /// **What it does:** Checks for generics with `std::ops::Drop` as bounds.
9     ///
10     /// **Why is this bad?** `Drop` bounds do not really accomplish anything.
11     /// A type may have compiler-generated drop glue without implementing the
12     /// `Drop` trait itself. The `Drop` trait also only has one method,
13     /// `Drop::drop`, and that function is by fiat not callable in user code.
14     /// So there is really no use case for using `Drop` in trait bounds.
15     ///
16     /// The most likely use case of a drop bound is to distinguish between types
17     /// that have destructors and types that don't. Combined with specialization,
18     /// a naive coder would write an implementation that assumed a type could be
19     /// trivially dropped, then write a specialization for `T: Drop` that actually
20     /// calls the destructor. Except that doing so is not correct; String, for
21     /// example, doesn't actually implement Drop, but because String contains a
22     /// Vec, assuming it can be trivially dropped will leak memory.
23     ///
24     /// **Known problems:** None.
25     ///
26     /// **Example:**
27     /// ```rust
28     /// fn foo<T: Drop>() {}
29     /// ```
30     pub DROP_BOUNDS,
31     correctness,
32     "Bounds of the form `T: Drop` are useless"
33 }
34
35 const DROP_BOUNDS_SUMMARY: &str = "Bounds of the form `T: Drop` are useless. \
36                                    Use `std::mem::needs_drop` to detect if a type has drop glue.";
37
38 declare_lint_pass!(DropBounds => [DROP_BOUNDS]);
39
40 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for DropBounds {
41     fn check_generic_param(&mut self, cx: &rustc_lint::LateContext<'a, 'tcx>, p: &'tcx GenericParam<'_>) {
42         for bound in p.bounds.iter() {
43             lint_bound(cx, bound);
44         }
45     }
46     fn check_where_predicate(&mut self, cx: &rustc_lint::LateContext<'a, 'tcx>, p: &'tcx WherePredicate<'_>) {
47         if let WherePredicate::BoundPredicate(WhereBoundPredicate { bounds, .. }) = p {
48             for bound in *bounds {
49                 lint_bound(cx, bound);
50             }
51         }
52     }
53 }
54
55 fn lint_bound<'a, 'tcx>(cx: &rustc_lint::LateContext<'a, 'tcx>, bound: &'tcx GenericBound<'_>) {
56     if_chain! {
57         if let GenericBound::Trait(t, _) = bound;
58         if let Some(def_id) = t.trait_ref.path.res.opt_def_id();
59         if match_def_path(cx, def_id, &paths::DROP_TRAIT);
60         then {
61             span_lint(
62                 cx,
63                 DROP_BOUNDS,
64                 t.span,
65                 DROP_BOUNDS_SUMMARY
66             );
67         }
68     }
69 }