2020-01-06 06:36:33 +00:00
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/min_max.rs:22:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | min(1, max(3, x));
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::min-max` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::min_max)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:25:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | min(max(3, x), 1);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:27:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | max(min(x, 1), 3);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:29:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | max(3, min(x, 1));
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:32:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | my_max(3, my_min(x, 1));
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:43:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | min("Apple", max("Zoo", s));
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:45:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | max(min(s, "Apple"), "Zoo");
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:51:5
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
|
LL | x.min(1).max(3);
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:53:5
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
|
LL | x.max(3).min(1);
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:55:5
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
|
LL | f.max(3f32).min(1f32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:62:5
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
|
LL | max(x.min(1), 3);
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:66:5
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
|
LL | s.max("Zoo").min("Apple");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this `min`/`max` combination leads to constant result
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/min_max.rs:68:5
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
|
LL | s.min("Apple").max("Zoo");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 13 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|