summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/neg_multiply.stderr
blob: abfc94f97701f3e7be84a6ae469c244d7ae51037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
error: this multiplication by -1 can be written more succinctly
  --> $DIR/neg_multiply.rs:28:5
   |
LL |     x * -1;
   |     ^^^^^^ help: consider using: `-x`
   |
   = note: `-D clippy::neg-multiply` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::neg_multiply)]`

error: this multiplication by -1 can be written more succinctly
  --> $DIR/neg_multiply.rs:30:5
   |
LL |     -1 * x;
   |     ^^^^^^ help: consider using: `-x`

error: this multiplication by -1 can be written more succinctly
  --> $DIR/neg_multiply.rs:32:11
   |
LL |     100 + x * -1;
   |           ^^^^^^ help: consider using: `-x`

error: this multiplication by -1 can be written more succinctly
  --> $DIR/neg_multiply.rs:34:5
   |
LL |     (100 + x) * -1;
   |     ^^^^^^^^^^^^^^ help: consider using: `-(100 + x)`

error: this multiplication by -1 can be written more succinctly
  --> $DIR/neg_multiply.rs:36:5
   |
LL |     -1 * 17;
   |     ^^^^^^^ help: consider using: `-17`

error: this multiplication by -1 can be written more succinctly
  --> $DIR/neg_multiply.rs:38:14
   |
LL |     0xcafe | 0xff00 * -1;
   |              ^^^^^^^^^^^ help: consider using: `-0xff00`

error: this multiplication by -1 can be written more succinctly
  --> $DIR/neg_multiply.rs:40:5
   |
LL |     3_usize as i32 * -1;
   |     ^^^^^^^^^^^^^^^^^^^ help: consider using: `-(3_usize as i32)`

error: this multiplication by -1 can be written more succinctly
  --> $DIR/neg_multiply.rs:41:5
   |
LL |     (3_usize as i32) * -1;
   |     ^^^^^^^^^^^^^^^^^^^^^ help: consider using: `-(3_usize as i32)`

error: aborting due to 8 previous errors