2024-09-24 11:58:04 +02:00
|
|
|
//@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 };
|
2025-02-28 23:20:48 +01:00
|
|
|
//~^ inverted_saturating_sub
|
|
|
|
|
|
2024-09-24 11:58:04 +02:00
|
|
|
let result = if b < a { b - a } else { 0 };
|
2025-02-28 23:20:48 +01:00
|
|
|
//~^ inverted_saturating_sub
|
2024-09-24 11:58:04 +02:00
|
|
|
|
|
|
|
|
let result = if a > b { 0 } else { a - b };
|
2025-02-28 23:20:48 +01:00
|
|
|
//~^ inverted_saturating_sub
|
|
|
|
|
|
2024-09-24 11:58:04 +02:00
|
|
|
let result = if a >= b { 0 } else { a - b };
|
2025-02-28 23:20:48 +01:00
|
|
|
//~^ inverted_saturating_sub
|
|
|
|
|
|
2024-09-24 11:58:04 +02:00
|
|
|
let result = if b < a { 0 } else { a - b };
|
2025-02-28 23:20:48 +01:00
|
|
|
//~^ inverted_saturating_sub
|
|
|
|
|
|
2024-09-24 11:58:04 +02:00
|
|
|
let result = if b <= a { 0 } else { a - b };
|
2025-02-28 23:20:48 +01:00
|
|
|
//~^ inverted_saturating_sub
|
2024-09-24 11:58:04 +02:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
};
|
|
|
|
|
}
|