2017-02-07 14:05:30 -06:00
|
|
|
error: this min/max combination leads to constant result
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/min_max.rs:25:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
25 | min(1, max(3, x));
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::min-max` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/min_max.rs:26:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
26 | min(max(3, x), 1);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/min_max.rs:27:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
27 | max(min(x, 1), 3);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/min_max.rs:28:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
28 | max(3, min(x, 1));
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/min_max.rs:30:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
30 | my_max(3, my_min(x, 1));
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/min_max.rs:42:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
42 | min("Apple", max("Zoo", s));
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this min/max combination leads to constant result
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/min_max.rs:43:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
43 | max(min(s, "Apple"), "Zoo");
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|