about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-04-18 02:12:13 +0000
committerbors <bors@rust-lang.org>2021-04-18 02:12:13 +0000
commit8c37e19da4209f4713d3809ec6a60190765656fc (patch)
tree0338368e426a25a4fcefa635bf1b3a312fb74037
parent696562d22d4c42884d752223212dc92de0f453bf (diff)
parent913780397a61023e6513ed7601bb1d9fe4612690 (diff)
downloadrust-8c37e19da4209f4713d3809ec6a60190765656fc.tar.gz
rust-8c37e19da4209f4713d3809ec6a60190765656fc.zip
Auto merge of #84064 - hyd-dev:unknown-lints, r=petrochenkov
Do not ignore path segments in the middle in `#[allow]`/`#[warn]`/`#[deny]`/`#[forbid]` attributes

Fixes #83477.
-rw-r--r--tests/ui/filter_methods.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/filter_methods.rs b/tests/ui/filter_methods.rs
index 51450241619..96121b114ce 100644
--- a/tests/ui/filter_methods.rs
+++ b/tests/ui/filter_methods.rs
@@ -1,5 +1,5 @@
 #![warn(clippy::all, clippy::pedantic)]
-#![allow(clippy::clippy::let_underscore_drop)]
+#![allow(clippy::let_underscore_drop)]
 #![allow(clippy::missing_docs_in_private_items)]
 
 fn main() {