-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
84 additions
and
8 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,52 @@ | ||
error: found call to `str::trim` before `str::split_whitespace` | ||
--> $DIR/trim_split_whitespace.rs:36:23 | ||
--> $DIR/trim_split_whitespace.rs:61:23 | ||
| | ||
LL | let _ = " A B C ".trim().split_whitespace(); // should trigger lint | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `trim()`: `split_whitespace()` | ||
| | ||
= note: `-D clippy::trim-split-whitespace` implied by `-D warnings` | ||
|
||
error: found call to `str::trim_start` before `str::split_whitespace` | ||
--> $DIR/trim_split_whitespace.rs:37:23 | ||
--> $DIR/trim_split_whitespace.rs:62:23 | ||
| | ||
LL | let _ = " A B C ".trim_start().split_whitespace(); // should trigger lint | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `trim_start()`: `split_whitespace()` | ||
|
||
error: found call to `str::trim_end` before `str::split_whitespace` | ||
--> $DIR/trim_split_whitespace.rs:38:23 | ||
--> $DIR/trim_split_whitespace.rs:63:23 | ||
| | ||
LL | let _ = " A B C ".trim_end().split_whitespace(); // should trigger lint | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `trim_end()`: `split_whitespace()` | ||
|
||
error: found call to `str::trim` before `str::split_whitespace` | ||
--> $DIR/trim_split_whitespace.rs:41:37 | ||
--> $DIR/trim_split_whitespace.rs:66:37 | ||
| | ||
LL | let _ = (" A B C ").to_string().trim().split_whitespace(); // should trigger lint | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `trim()`: `split_whitespace()` | ||
|
||
error: found call to `str::trim_start` before `str::split_whitespace` | ||
--> $DIR/trim_split_whitespace.rs:42:37 | ||
--> $DIR/trim_split_whitespace.rs:67:37 | ||
| | ||
LL | let _ = (" A B C ").to_string().trim_start().split_whitespace(); // should trigger lint | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `trim_start()`: `split_whitespace()` | ||
|
||
error: found call to `str::trim_end` before `str::split_whitespace` | ||
--> $DIR/trim_split_whitespace.rs:43:37 | ||
--> $DIR/trim_split_whitespace.rs:68:37 | ||
| | ||
LL | let _ = (" A B C ").to_string().trim_end().split_whitespace(); // should trigger lint | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `trim_end()`: `split_whitespace()` | ||
|
||
error: found call to `str::trim` before `str::split_whitespace` | ||
--> $DIR/trim_split_whitespace.rs:50:15 | ||
--> $DIR/trim_split_whitespace.rs:75:15 | ||
| | ||
LL | let _ = s.trim().split_whitespace(); // should trigger lint | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `trim()`: `split_whitespace()` | ||
|
||
error: aborting due to 7 previous errors | ||
error: found call to `str::trim` before `str::split_whitespace` | ||
--> $DIR/trim_split_whitespace.rs:83:15 | ||
| | ||
LL | let _ = s.trim().split_whitespace(); // should trigger lint | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `trim()`: `split_whitespace()` | ||
|
||
error: aborting due to 8 previous errors | ||
|