Skip to content

Commit dc340fe

Browse files
committed
Auto merge of #4606 - Manishearth:rustup, r=centril
Fix some tests Might be breaking the rustup? I can't tell, I can't reproduce errors on CI changelog: none rust-lang/rust#64963 (comment)
2 parents b462905 + 4318854 commit dc340fe

File tree

4 files changed

+2
-75
lines changed

4 files changed

+2
-75
lines changed

tests/ui/out_of_bounds_indexing/empty_array.rs

-19
This file was deleted.

tests/ui/out_of_bounds_indexing/empty_array.stderr

-54
This file was deleted.

tests/ui/out_of_bounds_indexing/issue-3102.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![warn(clippy::out_of_bounds_indexing)]
2-
#![allow(clippy::no_effect)]
2+
#![allow(clippy::no_effect, const_err)]
33

44
fn main() {
55
let x = [1, 2, 3, 4];

tests/ui/out_of_bounds_indexing/simple.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![warn(clippy::out_of_bounds_indexing)]
2-
#![allow(clippy::no_effect, clippy::unnecessary_operation)]
2+
#![allow(clippy::no_effect, clippy::unnecessary_operation, const_err)]
33

44
fn main() {
55
let x = [1, 2, 3, 4];

0 commit comments

Comments
 (0)