From 6f42f3cac4c3bd4b5e8fb4fbed05e0aa51b915a4 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 22 Nov 2022 19:19:37 -0800 Subject: [PATCH] Fix renamed let_underscore_drop lint warning: lint `clippy::let_underscore_drop` has been renamed to `let_underscore_drop` --> tests/test.rs:3:5 | 3 | clippy::let_underscore_drop, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `let_underscore_drop` | = note: `#[warn(renamed_and_removed_lints)]` on by default --- tests/test.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test.rs b/tests/test.rs index dd44cb3..52ec7bc 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -1,6 +1,5 @@ #![allow( clippy::disallowed_names, - clippy::let_underscore_drop, clippy::shadow_unrelated, clippy::unseparated_literal_suffix, clippy::used_underscore_binding