mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
24 lines
350 B
Rust
24 lines
350 B
Rust
|
#![warn(clippy::suspicious_unary_op_formatting)]
|
||
|
|
||
|
#[rustfmt::skip]
|
||
|
fn main() {
|
||
|
// weird binary operator formatting:
|
||
|
let a = 42;
|
||
|
|
||
|
if a >- 30 {}
|
||
|
if a >=- 30 {}
|
||
|
|
||
|
let b = true;
|
||
|
let c = false;
|
||
|
|
||
|
if b &&! c {}
|
||
|
|
||
|
if a >- 30 {}
|
||
|
|
||
|
// those are ok:
|
||
|
if a >-30 {}
|
||
|
if a < -30 {}
|
||
|
if b && !c {}
|
||
|
if a > - 30 {}
|
||
|
}
|