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