about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2020-10-02 11:34:14 -0700
committerMichael Howell <michael@notriddle.com>2020-10-02 11:34:14 -0700
commit840f7daaadb1222c4355dbb72cabdcf912cb8877 (patch)
tree997e86d7685951349bca8be2f3a25036c22a3188 /src
parent952ec7d06660277dedf3436a9f50952a9caa6523 (diff)
downloadrust-840f7daaadb1222c4355dbb72cabdcf912cb8877.tar.gz
rust-840f7daaadb1222c4355dbb72cabdcf912cb8877.zip
Deprecate clippy lint
Diffstat (limited to 'src')
-rw-r--r--src/lintlist/mod.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs
index 9603023ed06..f6d529de9a3 100644
--- a/src/lintlist/mod.rs
+++ b/src/lintlist/mod.rs
@@ -424,13 +424,6 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
         module: "double_parens",
     },
     Lint {
-        name: "drop_bounds",
-        group: "correctness",
-        desc: "bounds of the form `T: Drop` are useless",
-        deprecation: None,
-        module: "drop_bounds",
-    },
-    Lint {
         name: "drop_copy",
         group: "correctness",
         desc: "calls to `std::mem::drop` with a value that implements Copy",