forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#5871 - wiomoc:feature/methodcall-minmax, r=…
…flip1995 Lint .min(x).max(y) with x < y Fixes rust-lang#5854 changelog: Also lint `ord.min(a).max(b)`, where `a < b` in [`min_max`] lint
- Loading branch information
Showing
3 changed files
with
115 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,82 @@ | ||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:12:5 | ||
--> $DIR/min_max.rs:24: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 | ||
--> $DIR/min_max.rs:25:5 | ||
| | ||
LL | min(max(3, x), 1); | ||
| ^^^^^^^^^^^^^^^^^ | ||
|
||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:14:5 | ||
--> $DIR/min_max.rs:26:5 | ||
| | ||
LL | max(min(x, 1), 3); | ||
| ^^^^^^^^^^^^^^^^^ | ||
|
||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:15:5 | ||
--> $DIR/min_max.rs:27:5 | ||
| | ||
LL | max(3, min(x, 1)); | ||
| ^^^^^^^^^^^^^^^^^ | ||
|
||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:17:5 | ||
--> $DIR/min_max.rs:29:5 | ||
| | ||
LL | my_max(3, my_min(x, 1)); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:29:5 | ||
--> $DIR/min_max.rs:41:5 | ||
| | ||
LL | min("Apple", max("Zoo", s)); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:30:5 | ||
--> $DIR/min_max.rs:42:5 | ||
| | ||
LL | max(min(s, "Apple"), "Zoo"); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 7 previous errors | ||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:47:5 | ||
| | ||
LL | x.min(1).max(3); | ||
| ^^^^^^^^^^^^^^^ | ||
|
||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:48:5 | ||
| | ||
LL | x.max(3).min(1); | ||
| ^^^^^^^^^^^^^^^ | ||
|
||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:49:5 | ||
| | ||
LL | f.max(3f32).min(1f32); | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:55:5 | ||
| | ||
LL | max(x.min(1), 3); | ||
| ^^^^^^^^^^^^^^^^ | ||
|
||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:58:5 | ||
| | ||
LL | s.max("Zoo").min("Apple"); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: this `min`/`max` combination leads to constant result | ||
--> $DIR/min_max.rs:59:5 | ||
| | ||
LL | s.min("Apple").max("Zoo"); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 13 previous errors | ||
|