mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
147 lines
6.2 KiB
Text
147 lines
6.2 KiB
Text
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:20:5
|
|
|
|
|
20 | u <= 0;
|
|
| ^^^^^^
|
|
|
|
|
= note: `-D clippy::absurd-extreme-comparisons` implied by `-D warnings`
|
|
= help: because 0 is the minimum value for this type, the case where the two sides are not equal never occurs, consider using u == 0 instead
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:21:5
|
|
|
|
|
21 | u <= Z;
|
|
| ^^^^^^
|
|
|
|
|
= help: because Z is the minimum value for this type, the case where the two sides are not equal never occurs, consider using u == Z instead
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:22:5
|
|
|
|
|
22 | u < Z;
|
|
| ^^^^^
|
|
|
|
|
= help: because Z is the minimum value for this type, this comparison is always false
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:23:5
|
|
|
|
|
23 | Z >= u;
|
|
| ^^^^^^
|
|
|
|
|
= help: because Z is the minimum value for this type, the case where the two sides are not equal never occurs, consider using Z == u instead
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:24:5
|
|
|
|
|
24 | Z > u;
|
|
| ^^^^^
|
|
|
|
|
= help: because Z is the minimum value for this type, this comparison is always false
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:25:5
|
|
|
|
|
25 | u > std::u32::MAX;
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: because std::u32::MAX is the maximum value for this type, this comparison is always false
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:26:5
|
|
|
|
|
26 | u >= std::u32::MAX;
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: because std::u32::MAX is the maximum value for this type, the case where the two sides are not equal never occurs, consider using u == std::u32::MAX instead
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:27:5
|
|
|
|
|
27 | std::u32::MAX < u;
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: because std::u32::MAX is the maximum value for this type, this comparison is always false
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:28:5
|
|
|
|
|
28 | std::u32::MAX <= u;
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: because std::u32::MAX is the maximum value for this type, the case where the two sides are not equal never occurs, consider using std::u32::MAX == u instead
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:29:5
|
|
|
|
|
29 | 1-1 > u;
|
|
| ^^^^^^^
|
|
|
|
|
= help: because 1-1 is the minimum value for this type, this comparison is always false
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:30:5
|
|
|
|
|
30 | u >= !0;
|
|
| ^^^^^^^
|
|
|
|
|
= help: because !0 is the maximum value for this type, the case where the two sides are not equal never occurs, consider using u == !0 instead
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:31:5
|
|
|
|
|
31 | u <= 12 - 2*6;
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= help: because 12 - 2*6 is the minimum value for this type, the case where the two sides are not equal never occurs, consider using u == 12 - 2*6 instead
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:33:5
|
|
|
|
|
33 | i < -127 - 1;
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= help: because -127 - 1 is the minimum value for this type, this comparison is always false
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:34:5
|
|
|
|
|
34 | std::i8::MAX >= i;
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: because std::i8::MAX is the maximum value for this type, this comparison is always true
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:35:5
|
|
|
|
|
35 | 3-7 < std::i32::MIN;
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: because std::i32::MIN is the minimum value for this type, this comparison is always false
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:37:5
|
|
|
|
|
37 | b >= true;
|
|
| ^^^^^^^^^
|
|
|
|
|
= help: because true is the maximum value for this type, the case where the two sides are not equal never occurs, consider using b == true instead
|
|
|
|
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
|
|
--> $DIR/absurd-extreme-comparisons.rs:38:5
|
|
|
|
|
38 | false > b;
|
|
| ^^^^^^^^^
|
|
|
|
|
= help: because false is the minimum value for this type, this comparison is always false
|
|
|
|
error: <-comparison of unit values detected. This will always be false
|
|
--> $DIR/absurd-extreme-comparisons.rs:41:5
|
|
|
|
|
41 | () < {};
|
|
| ^^^^^^^
|
|
|
|
|
= note: #[deny(clippy::unit_cmp)] on by default
|
|
|
|
error: aborting due to 18 previous errors
|
|
|