From ecad462c8e966b7f9c059b8aa3362bcf676b776c Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 22 Nov 2022 18:47:52 -0800 Subject: [PATCH] Fix renamed let_underscore_drop lint error: lint `clippy::let_underscore_drop` has been renamed to `let_underscore_drop` --> tests/test.rs:9:5 | 9 | clippy::let_underscore_drop, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `let_underscore_drop` | = note: `-D renamed-and-removed-lints` implied by `-D warnings` --- tests/test.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test.rs b/tests/test.rs index 0c0f00e8b..c2050724b 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -6,7 +6,6 @@ clippy::excessive_precision, clippy::float_cmp, clippy::items_after_statements, - clippy::let_underscore_drop, clippy::shadow_unrelated, clippy::too_many_lines, clippy::unreadable_literal,