Skip to content

Commit 6c9983b

Browse files
committed
Exec cargo dev update_lints
1 parent ade4c9b commit 6c9983b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4431,7 +4431,6 @@ Released 2018-09-13
44314431
[`if_then_some_else_none`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_then_some_else_none
44324432
[`ifs_same_cond`]: https://rust-lang.github.io/rust-clippy/master/index.html#ifs_same_cond
44334433
[`impl_trait_in_params`]: https://rust-lang.github.io/rust-clippy/master/index.html#impl_trait_in_params
4434-
[`impl_trait_param`]: https://rust-lang.github.io/rust-clippy/master/index.html#impl_trait_param
44354434
[`implicit_clone`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_clone
44364435
[`implicit_hasher`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_hasher
44374436
[`implicit_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_return

tests/ui/borrow_box.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#![deny(clippy::borrowed_box)]
22
#![allow(dead_code, unused_variables)]
3-
#![allow(clippy::uninlined_format_args, clippy::disallowed_names, clippy::impl_trait_in_params)]
3+
#![allow(
4+
clippy::uninlined_format_args,
5+
clippy::disallowed_names,
6+
clippy::impl_trait_in_params
7+
)]
48

59
use std::fmt::Display;
610

0 commit comments

Comments
 (0)