diff options
| author | blyxyas <blyxyas@gmail.com> | 2023-01-13 12:21:17 +0100 |
|---|---|---|
| committer | blyxyas <blyxyas@gmail.com> | 2023-02-15 21:34:47 +0100 |
| commit | 6c9983b936645629d8bf66d2aac9ba5e588f5fb7 (patch) | |
| tree | c82d436d14c6bb06cfbba2cfa83a0d54315c5999 | |
| parent | ade4c9b2b6e99e0663408318e41139d65a9d0630 (diff) | |
| download | rust-6c9983b936645629d8bf66d2aac9ba5e588f5fb7.tar.gz rust-6c9983b936645629d8bf66d2aac9ba5e588f5fb7.zip | |
Exec `cargo dev update_lints`
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | tests/ui/borrow_box.rs | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index db2602285c9..486ffd725c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4431,7 +4431,6 @@ Released 2018-09-13 [`if_then_some_else_none`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_then_some_else_none [`ifs_same_cond`]: https://rust-lang.github.io/rust-clippy/master/index.html#ifs_same_cond [`impl_trait_in_params`]: https://rust-lang.github.io/rust-clippy/master/index.html#impl_trait_in_params -[`impl_trait_param`]: https://rust-lang.github.io/rust-clippy/master/index.html#impl_trait_param [`implicit_clone`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_clone [`implicit_hasher`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_hasher [`implicit_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_return diff --git a/tests/ui/borrow_box.rs b/tests/ui/borrow_box.rs index 3dfd8191adf..8fe160e8e0f 100644 --- a/tests/ui/borrow_box.rs +++ b/tests/ui/borrow_box.rs @@ -1,6 +1,10 @@ #![deny(clippy::borrowed_box)] #![allow(dead_code, unused_variables)] -#![allow(clippy::uninlined_format_args, clippy::disallowed_names, clippy::impl_trait_in_params)] +#![allow( + clippy::uninlined_format_args, + clippy::disallowed_names, + clippy::impl_trait_in_params +)] use std::fmt::Display; |
