2017-02-07 20:05:30 +00:00
|
|
|
error: operator precedence can trip the unwary
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/precedence.rs:24:5
|
2018-01-16 14:52:16 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
24 | 1 << 2 + 3;
|
2018-01-16 14:52:16 +00:00
|
|
|
| ^^^^^^^^^^ help: consider parenthesizing your expression: `1 << (2 + 3)`
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::precedence` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: operator precedence can trip the unwary
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/precedence.rs:25:5
|
2018-01-16 14:52:16 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
25 | 1 + 2 << 3;
|
2018-01-16 14:52:16 +00:00
|
|
|
| ^^^^^^^^^^ help: consider parenthesizing your expression: `(1 + 2) << 3`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: operator precedence can trip the unwary
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/precedence.rs:26:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
26 | 4 >> 1 + 1;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^ help: consider parenthesizing your expression: `4 >> (1 + 1)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: operator precedence can trip the unwary
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/precedence.rs:27:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
27 | 1 + 3 >> 2;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^ help: consider parenthesizing your expression: `(1 + 3) >> 2`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: operator precedence can trip the unwary
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/precedence.rs:28:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
28 | 1 ^ 1 - 1;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^ help: consider parenthesizing your expression: `1 ^ (1 - 1)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: operator precedence can trip the unwary
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/precedence.rs:29:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
29 | 3 | 2 - 1;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^ help: consider parenthesizing your expression: `3 | (2 - 1)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: operator precedence can trip the unwary
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/precedence.rs:30:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
30 | 3 & 5 - 2;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^ help: consider parenthesizing your expression: `3 & (5 - 2)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: unary minus has lower precedence than method call
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/precedence.rs:31:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
31 | -1i32.abs();
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^ help: consider adding parentheses to clarify your intent: `-(1i32.abs())`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: unary minus has lower precedence than method call
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/precedence.rs:32:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
32 | -1f32.abs();
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^ help: consider adding parentheses to clarify your intent: `-(1f32.abs())`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 9 previous errors
|
|
|
|
|