rust-clippy/tests/ui/int_plus_one.rs

18 lines
324 B
Rust
Raw Normal View History

2019-08-18 07:24:30 +00:00
// run-rustfix
2018-07-28 15:34:52 +00:00
#[allow(clippy::no_effect, clippy::unnecessary_operation)]
#[warn(clippy::int_plus_one)]
2017-09-17 16:27:40 +00:00
fn main() {
let x = 1i32;
let y = 0i32;
2018-10-11 10:16:22 +00:00
2019-08-18 07:24:30 +00:00
let _ = x >= y + 1;
let _ = y + 1 <= x;
2017-09-17 16:27:40 +00:00
2019-08-18 07:24:30 +00:00
let _ = x - 1 >= y;
let _ = y <= x - 1;
2017-09-17 16:27:40 +00:00
2019-08-18 07:24:30 +00:00
let _ = x > y; // should be ok
let _ = y < x; // should be ok
2017-09-17 16:27:40 +00:00
}