rust/tests/ui/int_plus_one.rs

18 lines
324 B
Rust
Raw Normal View History

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