2017-02-07 20:05:30 +00:00
|
|
|
error: this min/max combination leads to constant result
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/min_max.rs:12: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`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/min_max.rs:13: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
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/min_max.rs:14: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
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/min_max.rs:15: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
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/min_max.rs:17: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
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2019-01-07 21:33:18 +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 | min("Apple", max("Zoo", s));
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/min_max.rs:30: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
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|