Skip to content

Commit 28197b6

Browse files
committed
Auto merge of #5545 - flip1995:rustup, r=flip1995
Rustup to rust-lang/rust#71518 changelog: none
2 parents 9a3b0a0 + cd34809 commit 28197b6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/ui/implicit_saturating_sub.fixed

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ fn main() {
2121
_ => u_8 = 0,
2222
}
2323

24-
let end_16: u16 = 35;
25-
let start_16: u16 = 40;
24+
let end_16: u16 = 40;
25+
let start_16: u16 = 35;
2626

2727
let mut u_16: u16 = end_16 - start_16;
2828

tests/ui/implicit_saturating_sub.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ fn main() {
2525
_ => u_8 = 0,
2626
}
2727

28-
let end_16: u16 = 35;
29-
let start_16: u16 = 40;
28+
let end_16: u16 = 40;
29+
let start_16: u16 = 35;
3030

3131
let mut u_16: u16 = end_16 - start_16;
3232

0 commit comments

Comments
 (0)