mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
24 lines
727 B
Rust
24 lines
727 B
Rust
#![warn(clippy::implicit_saturating_sub, clippy::inverted_saturating_sub)]
|
|
#![allow(clippy::if_same_then_else)]
|
|
|
|
fn main() {
|
|
let a = 12u32;
|
|
let b = 13u32;
|
|
let c = 8u32;
|
|
|
|
let result = if a > b { a - b } else { 0 };
|
|
//~^ ERROR: manual arithmetic check found
|
|
let result = if b < a { a - b } else { 0 };
|
|
//~^ ERROR: manual arithmetic check found
|
|
|
|
let result = if a < b { 0 } else { a - b };
|
|
//~^ ERROR: manual arithmetic check found
|
|
let result = if b > a { 0 } else { a - b };
|
|
//~^ ERROR: manual arithmetic check found
|
|
|
|
// Should not warn!
|
|
let result = if a > b { a - b } else { a - c };
|
|
|
|
// Just to check it won't break clippy.
|
|
let result = if b > a { 0 } else { 0 };
|
|
}
|