mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
17 lines
304 B
Rust
17 lines
304 B
Rust
//@run-rustfix
|
|
|
|
#[allow(clippy::no_effect, clippy::unnecessary_operation)]
|
|
#[warn(clippy::int_plus_one)]
|
|
fn main() {
|
|
let x = 1i32;
|
|
let y = 0i32;
|
|
|
|
let _ = x > y;
|
|
let _ = y < x;
|
|
|
|
let _ = x > y;
|
|
let _ = y < x;
|
|
|
|
let _ = x > y; // should be ok
|
|
let _ = y < x; // should be ok
|
|
}
|