Skip to content

Commit e9e0907

Browse files
committed
Auto merge of #9425 - JohnTitor:tweak-cargo-fix-test, r=alexcrichton
Only deny the `unused_mut` lint This is needed for rust-lang/rust#83004 to pass CI.
2 parents 4369396 + e5ab391 commit e9e0907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/testsuite/fix.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ fn fix_deny_warnings_but_not_others() {
553553
.file(
554554
"src/lib.rs",
555555
"
556-
#![deny(warnings)]
556+
#![deny(unused_mut)]
557557
558558
pub fn foo() -> u32 {
559559
let mut x = 3;

0 commit comments

Comments
 (0)