error: this min/max combination leads to constant result --> min_max.rs:15:5 | 15 | min(1, max(3, x)); | ^^^^^^^^^^^^^^^^^ | = note: `-D min-max` implied by `-D warnings` error: this min/max combination leads to constant result --> min_max.rs:16:5 | 16 | min(max(3, x), 1); | ^^^^^^^^^^^^^^^^^ | = note: `-D min-max` implied by `-D warnings` error: this min/max combination leads to constant result --> min_max.rs:17:5 | 17 | max(min(x, 1), 3); | ^^^^^^^^^^^^^^^^^ | = note: `-D min-max` implied by `-D warnings` error: this min/max combination leads to constant result --> min_max.rs:18:5 | 18 | max(3, min(x, 1)); | ^^^^^^^^^^^^^^^^^ | = note: `-D min-max` implied by `-D warnings` error: this min/max combination leads to constant result --> min_max.rs:20:5 | 20 | my_max(3, my_min(x, 1)); | ^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D min-max` implied by `-D warnings` error: this min/max combination leads to constant result --> min_max.rs:29:5 | 29 | min("Apple", max("Zoo", s)); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D min-max` implied by `-D warnings` error: this min/max combination leads to constant result --> min_max.rs:30:5 | 30 | max(min(s, "Apple"), "Zoo"); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D min-max` implied by `-D warnings` error: aborting due to 7 previous errors error: Could not compile `clippy_tests`. To learn more, run the command again with --verbose.