diff options
| author | bors <bors@rust-lang.org> | 2021-04-18 02:12:13 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-04-18 02:12:13 +0000 |
| commit | 8c37e19da4209f4713d3809ec6a60190765656fc (patch) | |
| tree | 0338368e426a25a4fcefa635bf1b3a312fb74037 | |
| parent | 696562d22d4c42884d752223212dc92de0f453bf (diff) | |
| parent | 913780397a61023e6513ed7601bb1d9fe4612690 (diff) | |
| download | rust-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.rs | 2 |
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() { |
