mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
35 lines
1 KiB
Rust
35 lines
1 KiB
Rust
//@no-rustfix
|
|
#![warn(clippy::implicit_saturating_sub)]
|
|
#![allow(arithmetic_overflow)]
|
|
|
|
fn main() {
|
|
let a = 12u32;
|
|
let b = 13u32;
|
|
|
|
let result = if a > b { b - a } else { 0 };
|
|
//~^ ERROR: inverted arithmetic check before subtraction
|
|
let result = if b < a { b - a } else { 0 };
|
|
//~^ ERROR: inverted arithmetic check before subtraction
|
|
|
|
let result = if a > b { 0 } else { a - b };
|
|
//~^ ERROR: inverted arithmetic check before subtraction
|
|
let result = if a >= b { 0 } else { a - b };
|
|
//~^ ERROR: inverted arithmetic check before subtraction
|
|
let result = if b < a { 0 } else { a - b };
|
|
//~^ ERROR: inverted arithmetic check before subtraction
|
|
let result = if b <= a { 0 } else { a - b };
|
|
//~^ ERROR: inverted arithmetic check before subtraction
|
|
|
|
let af = 12f32;
|
|
let bf = 13f32;
|
|
// Should not lint!
|
|
let result = if bf < af { 0. } else { af - bf };
|
|
|
|
// Should not lint!
|
|
let result = if a < b {
|
|
println!("we shouldn't remove this");
|
|
0
|
|
} else {
|
|
a - b
|
|
};
|
|
}
|