mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
46 lines
1.1 KiB
Text
46 lines
1.1 KiB
Text
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:12:5
|
|
|
|
|
LL | 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:13:5
|
|
|
|
|
LL | min(max(3, x), 1);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:14:5
|
|
|
|
|
LL | max(min(x, 1), 3);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:15:5
|
|
|
|
|
LL | max(3, min(x, 1));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:17:5
|
|
|
|
|
LL | my_max(3, my_min(x, 1));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:29:5
|
|
|
|
|
LL | min("Apple", max("Zoo", s));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: this min/max combination leads to constant result
|
|
--> $DIR/min_max.rs:30:5
|
|
|
|
|
LL | max(min(s, "Apple"), "Zoo");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 7 previous errors
|
|
|