summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/precedence.stderr
blob: 03d585b39750a6cc3932fdf8c539063c76e28b1d (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
error: operator precedence can trip the unwary
  --> $DIR/precedence.rs:17:5
   |
LL |     1 << 2 + 3;
   |     ^^^^^^^^^^ help: consider parenthesizing your expression: `1 << (2 + 3)`
   |
   = note: `-D clippy::precedence` implied by `-D warnings`

error: operator precedence can trip the unwary
  --> $DIR/precedence.rs:18:5
   |
LL |     1 + 2 << 3;
   |     ^^^^^^^^^^ help: consider parenthesizing your expression: `(1 + 2) << 3`

error: operator precedence can trip the unwary
  --> $DIR/precedence.rs:19:5
   |
LL |     4 >> 1 + 1;
   |     ^^^^^^^^^^ help: consider parenthesizing your expression: `4 >> (1 + 1)`

error: operator precedence can trip the unwary
  --> $DIR/precedence.rs:20:5
   |
LL |     1 + 3 >> 2;
   |     ^^^^^^^^^^ help: consider parenthesizing your expression: `(1 + 3) >> 2`

error: operator precedence can trip the unwary
  --> $DIR/precedence.rs:21:5
   |
LL |     1 ^ 1 - 1;
   |     ^^^^^^^^^ help: consider parenthesizing your expression: `1 ^ (1 - 1)`

error: operator precedence can trip the unwary
  --> $DIR/precedence.rs:22:5
   |
LL |     3 | 2 - 1;
   |     ^^^^^^^^^ help: consider parenthesizing your expression: `3 | (2 - 1)`

error: operator precedence can trip the unwary
  --> $DIR/precedence.rs:23:5
   |
LL |     3 & 5 - 2;
   |     ^^^^^^^^^ help: consider parenthesizing your expression: `3 & (5 - 2)`

error: unary minus has lower precedence than method call
  --> $DIR/precedence.rs:24:5
   |
LL |     -1i32.abs();
   |     ^^^^^^^^^^^ help: consider adding parentheses to clarify your intent: `-(1i32.abs())`

error: unary minus has lower precedence than method call
  --> $DIR/precedence.rs:25:5
   |
LL |     -1f32.abs();
   |     ^^^^^^^^^^^ help: consider adding parentheses to clarify your intent: `-(1f32.abs())`

error: unary minus has lower precedence than method call
  --> $DIR/precedence.rs:52:13
   |
LL |     let _ = -1.0_f64.cos().cos();
   |             ^^^^^^^^^^^^^^^^^^^^ help: consider adding parentheses to clarify your intent: `-(1.0_f64.cos().cos())`

error: unary minus has lower precedence than method call
  --> $DIR/precedence.rs:53:13
   |
LL |     let _ = -1.0_f64.cos().sin();
   |             ^^^^^^^^^^^^^^^^^^^^ help: consider adding parentheses to clarify your intent: `-(1.0_f64.cos().sin())`

error: unary minus has lower precedence than method call
  --> $DIR/precedence.rs:54:13
   |
LL |     let _ = -1.0_f64.sin().cos();
   |             ^^^^^^^^^^^^^^^^^^^^ help: consider adding parentheses to clarify your intent: `-(1.0_f64.sin().cos())`

error: aborting due to 12 previous errors