-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Add format specifier suggestion #76443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add format specifier suggestion
When format specifier is missing from the format string: - Found format specifiers are pointed at - Suggest format specifier if none is present Fix #68293
- Loading branch information
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
38 changes: 38 additions & 0 deletions
38
src/test/ui/suggestions/issue-68293-missing-format-specifier.rs
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| // Issue 68293: This tests that the following changes work: | ||
| // the suggestion "format specifiers use curly braces: `{}`" is made | ||
| // found format specifiers are pointed at | ||
|
|
||
| fn no_format_specifiers_one_unused_argument() { | ||
| println!("list: ", 1); | ||
| //~^ ERROR argument never used | ||
| //~| NOTE formatting specifier missing | ||
| //~| NOTE format specifiers use curly braces: `{}` | ||
| //~| NOTE argument never used | ||
| } | ||
|
|
||
| fn no_format_specifiers_multiple_unused_arguments() { | ||
| println!("list: ", 3, 4, 5); | ||
| //~^ ERROR multiple unused formatting arguments | ||
| //~| NOTE multiple missing formatting specifiers | ||
| //~| NOTE format specifiers use curly braces: `{}` | ||
| //~| NOTE argument never used | ||
| //~| NOTE argument never used | ||
| //~| NOTE argument never used | ||
| } | ||
|
|
||
| fn missing_format_specifiers_one_unused_argument() { | ||
| println!("list: a{}, b{}", 1, 2, 3); | ||
| //~^ ERROR argument never used | ||
| //~| NOTE formatting specifier missing | ||
| //~| NOTE argument never used | ||
| } | ||
|
|
||
| fn missing_format_specifiers_multiple_unused_arguments() { | ||
| println!("list: a{}, b{} c{}", 1, 2, 3, 4, 5); | ||
| //~^ ERROR multiple unused formatting arguments | ||
| //~| NOTE multiple missing formatting specifiers | ||
| //~| NOTE argument never used | ||
| //~| NOTE argument never used | ||
| } | ||
|
|
||
| fn main() {} |
41 changes: 41 additions & 0 deletions
41
src/test/ui/suggestions/issue-68293-missing-format-specifier.stderr
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| error: argument never used | ||
| --> $DIR/issue-68293-missing-format-specifier.rs:6:22 | ||
| | | ||
| LL | println!("list: ", 1); | ||
| | -------- ^ argument never used | ||
| | | | ||
| | formatting specifier missing | ||
| | | ||
| = note: format specifiers use curly braces: `{}` | ||
|
|
||
| error: multiple unused formatting arguments | ||
| --> $DIR/issue-68293-missing-format-specifier.rs:14:22 | ||
| | | ||
| LL | println!("list: ", 3, 4, 5); | ||
| | -------- ^ ^ ^ argument never used | ||
| | | | | | ||
| | | | argument never used | ||
| | | argument never used | ||
| | multiple missing formatting specifiers | ||
| | | ||
| = note: format specifiers use curly braces: `{}` | ||
|
|
||
| error: argument never used | ||
| --> $DIR/issue-68293-missing-format-specifier.rs:24:20 | ||
| | | ||
| LL | println!("list: a{}, b{}", 1, 2, 3); | ||
| | --------^^---^^- ^ argument never used | ||
| | | | ||
| | formatting specifier missing | ||
|
|
||
| error: multiple unused formatting arguments | ||
| --> $DIR/issue-68293-missing-format-specifier.rs:31:20 | ||
| | | ||
| LL | println!("list: a{}, b{} c{}", 1, 2, 3, 4, 5); | ||
| | --------^^---^^--^^- ^ ^ argument never used | ||
| | | | | ||
| | | argument never used | ||
| | multiple missing formatting specifiers | ||
|
|
||
| error: aborting due to 4 previous errors | ||
|
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that ideally this would look like
In order to accomplish that we would need to
0", "named specifierfoo", etc.)For the proposed output we would need to do something like (simplified):
Would you be ok with taking on trying to accomplish this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup, I'll work on making these changes. Thanks for the feedback!