2019-10-03 10:45:58 -05:00
|
|
|
error: by not having a space between `>` and `-` it looks like `>-` is a single operator
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/suspicious_unary_op_formatting.rs:9:9
|
2019-10-03 10:45:58 -05:00
|
|
|
|
|
|
|
|
LL | if a >- 30 {}
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: put a space between `>` and `-` and remove the space after `-`
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::suspicious-unary-op-formatting` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::suspicious_unary_op_formatting)]`
|
2019-10-03 10:45:58 -05:00
|
|
|
|
|
|
|
error: by not having a space between `>=` and `-` it looks like `>=-` is a single operator
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/suspicious_unary_op_formatting.rs:11:9
|
2019-10-03 10:45:58 -05:00
|
|
|
|
|
|
|
|
LL | if a >=- 30 {}
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= help: put a space between `>=` and `-` and remove the space after `-`
|
|
|
|
|
|
|
|
error: by not having a space between `&&` and `!` it looks like `&&!` is a single operator
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/suspicious_unary_op_formatting.rs:17:9
|
2019-10-03 10:45:58 -05:00
|
|
|
|
|
|
|
|
LL | if b &&! c {}
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= help: put a space between `&&` and `!` and remove the space after `!`
|
|
|
|
|
|
|
|
error: by not having a space between `>` and `-` it looks like `>-` is a single operator
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/suspicious_unary_op_formatting.rs:20:9
|
2019-10-03 10:45:58 -05:00
|
|
|
|
|
|
|
|
LL | if a >- 30 {}
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= help: put a space between `>` and `-` and remove the space after `-`
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|