-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Suggest examples of format specifiers in error messages #146123
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
Open
+165
−0
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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
35 changes: 35 additions & 0 deletions
tests/ui/suggestions/missing-format-specifiers-issue-68293.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,35 @@ | ||
fn no_format_specifier_two_unused_args() { | ||
println!("Hello", "World"); | ||
//~^ ERROR argument never used | ||
//~| NOTE formatting specifier missing | ||
//~| NOTE format specifiers use curly braces: `{}` | ||
//~| NOTE argument never used | ||
} | ||
|
||
fn no_format_specifier_multiple_unused_args() { | ||
println!("list: ", 1, 2, 3); | ||
//~^ 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_arg() { | ||
println!("list: {}, {}", 1, 2, 3); | ||
//~^ ERROR argument never used | ||
//~| NOTE formatting specifier missing | ||
//~| NOTE argument never used | ||
} | ||
|
||
fn missing_format_specifiers_multiple_unused_args() { | ||
println!("list: {}", 1, 2, 3); | ||
//~^ ERROR multiple unused formatting arguments | ||
//~| NOTE multiple missing formatting specifiers | ||
//~| NOTE argument never used | ||
//~| NOTE argument never used | ||
//~| NOTE consider adding 2 format specifiers | ||
} | ||
|
||
fn main() { } |
51 changes: 51 additions & 0 deletions
tests/ui/suggestions/missing-format-specifiers-issue-68293.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,51 @@ | ||
error: argument never used | ||
--> $DIR/missing-format-specifiers-issue-68293.rs:2:23 | ||
| | ||
LL | println!("Hello", "World"); | ||
| ------- ^^^^^^^ argument never used | ||
| | | ||
| formatting specifier missing | ||
| | ||
= note: format specifiers use curly braces: `{}` | ||
help: consider adding format specifier | ||
| | ||
LL | println!("Hello{}", "World"); | ||
| ++ | ||
|
||
error: multiple unused formatting arguments | ||
--> $DIR/missing-format-specifiers-issue-68293.rs:10:24 | ||
| | ||
LL | println!("list: ", 1, 2, 3); | ||
| -------- ^ ^ ^ argument never used | ||
| | | | | ||
| | | argument never used | ||
| | argument never used | ||
| multiple missing formatting specifiers | ||
| | ||
= note: format specifiers use curly braces: `{}` | ||
help: consider adding 3 format specifiers | ||
| | ||
LL | println!("list: {}{}{}", 1, 2, 3); | ||
| ++++++ | ||
|
||
error: argument never used | ||
--> $DIR/missing-format-specifiers-issue-68293.rs:20:36 | ||
| | ||
LL | println!("list: {}, {}", 1, 2, 3); | ||
| -------------- ^ argument never used | ||
| | | ||
| formatting specifier missing | ||
|
||
error: multiple unused formatting arguments | ||
--> $DIR/missing-format-specifiers-issue-68293.rs:27:29 | ||
| | ||
LL | println!("list: {}", 1, 2, 3); | ||
| ---------- ^ ^ argument never used | ||
| | | | ||
| | argument never used | ||
| multiple missing formatting specifiers | ||
| | ||
= note: consider adding 2 format specifiers | ||
|
||
error: aborting due to 4 previous errors | ||
|
Oops, something went wrong.
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.