2021-12-30 14:10:43 +00:00
|
|
|
error: this multiplication by -1 can be written more succinctly
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/neg_multiply.rs:28:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x * -1;
|
2021-12-30 14:10:43 +00:00
|
|
|
| ^^^^^^ help: consider using: `-x`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::neg-multiply` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::neg_multiply)]`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2021-12-30 14:10:43 +00:00
|
|
|
error: this multiplication by -1 can be written more succinctly
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/neg_multiply.rs:30:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | -1 * x;
|
2021-12-30 14:10:43 +00:00
|
|
|
| ^^^^^^ help: consider using: `-x`
|
|
|
|
|
|
|
|
error: this multiplication by -1 can be written more succinctly
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/neg_multiply.rs:32:11
|
2021-12-30 14:10:43 +00:00
|
|
|
|
|
|
|
|
LL | 100 + x * -1;
|
|
|
|
| ^^^^^^ help: consider using: `-x`
|
|
|
|
|
|
|
|
error: this multiplication by -1 can be written more succinctly
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/neg_multiply.rs:34:5
|
2021-12-30 14:10:43 +00:00
|
|
|
|
|
|
|
|
LL | (100 + x) * -1;
|
|
|
|
| ^^^^^^^^^^^^^^ help: consider using: `-(100 + x)`
|
|
|
|
|
|
|
|
error: this multiplication by -1 can be written more succinctly
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/neg_multiply.rs:36:5
|
2021-12-30 14:10:43 +00:00
|
|
|
|
|
|
|
|
LL | -1 * 17;
|
|
|
|
| ^^^^^^^ help: consider using: `-17`
|
|
|
|
|
|
|
|
error: this multiplication by -1 can be written more succinctly
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/neg_multiply.rs:38:14
|
2021-12-30 14:10:43 +00:00
|
|
|
|
|
|
|
|
LL | 0xcafe | 0xff00 * -1;
|
|
|
|
| ^^^^^^^^^^^ help: consider using: `-0xff00`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: this multiplication by -1 can be written more succinctly
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/neg_multiply.rs:40:5
|
2022-06-30 08:50:09 +00:00
|
|
|
|
|
|
|
|
LL | 3_usize as i32 * -1;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: consider using: `-(3_usize as i32)`
|
|
|
|
|
|
|
|
error: this multiplication by -1 can be written more succinctly
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/neg_multiply.rs:41:5
|
2022-06-30 08:50:09 +00:00
|
|
|
|
|
|
|
|
LL | (3_usize as i32) * -1;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using: `-(3_usize as i32)`
|
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|