47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:21:5
|
|
|
|
|
21 | min(1, max(3, x));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::min-max` implied by `-D warnings`
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:22:5
|
|
|
|
|
22 | min(max(3, x), 1);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:23:5
|
|
|
|
|
23 | max(min(x, 1), 3);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:24:5
|
|
|
|
|
24 | max(3, min(x, 1));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:26:5
|
|
|
|
|
26 | my_max(3, my_min(x, 1));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:38:5
|
|
|
|
|
38 | min("Apple", max("Zoo", s));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:39:5
|
|
|
|
|
39 | max(min(s, "Apple"), "Zoo");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 7 previous errors
|
|
|