2017-02-07 20:05:30 +00:00
error: this comparison involving the minimum or maximum element for this type contains a case that is always true or always false
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:23:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
23 | u <= 0;
2017-02-07 20:05:30 +00:00
| ^^^^^^
|
2018-08-01 14:30:44 +00:00
= note: `-D clippy::absurd-extreme-comparisons` implied by `-D warnings`
2017-02-07 20:05:30 +00:00
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:24:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
24 | u <= Z;
2017-02-07 20:05:30 +00:00
| ^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:25:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
25 | u < Z;
2017-02-07 20:05:30 +00:00
| ^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:26:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
26 | Z >= u;
2017-02-07 20:05:30 +00:00
| ^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:27:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
27 | Z > u;
2017-02-07 20:05:30 +00:00
| ^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:28:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
28 | u > std::u32::MAX;
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^^^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:29:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
29 | u >= std::u32::MAX;
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^^^^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:30:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
30 | std::u32::MAX < u;
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^^^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:31:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
31 | std::u32::MAX <= u;
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^^^^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:32:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
32 | 1-1 > u;
2017-02-07 20:05:30 +00:00
| ^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:33:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
33 | u >= !0;
2017-02-07 20:05:30 +00:00
| ^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:34:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
34 | u <= 12 - 2*6;
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:36:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
36 | i < -127 - 1;
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:37:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
37 | std::i8::MAX >= i;
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^^^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:38:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
38 | 3-7 < std::i32::MIN;
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^^^^^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:40:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
40 | b >= true;
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^
|
= 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
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:41:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
41 | false > b;
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^
|
= help: because false is the minimum value for this type, this comparison is always false
2017-05-17 12:19:44 +00:00
error: <-comparison of unit values detected. This will always be false
2018-12-10 05:27:19 +00:00
--> $DIR/absurd-extreme-comparisons.rs:44:5
2017-02-07 20:05:30 +00:00
|
2018-12-10 05:27:19 +00:00
44 | () < {};
2017-02-07 20:05:30 +00:00
| ^^^^^^^
|
2018-08-01 14:30:44 +00:00
= note: #[deny(clippy::unit_cmp)] on by default
2017-05-17 12:19:44 +00:00
2018-01-16 16:06:27 +00:00
error: aborting due to 18 previous errors