-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve error message for
printf
-style format strings
- Loading branch information
1 parent
1d71ba8
commit 6490ed3
Showing
6 changed files
with
105 additions
and
26 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Regression test for #89173: Make sure a helpful note is issued for | ||
// printf-style format strings using `*` to specify the width. | ||
|
||
fn main() { | ||
let num = 0x0abcde; | ||
let width = 6; | ||
print!("%0*x", width, num); | ||
//~^ ERROR: multiple unused formatting arguments | ||
//~| NOTE: multiple missing formatting specifiers | ||
//~| NOTE: argument never used | ||
//~| NOTE: argument never used | ||
//~| NOTE: format specifiers use curly braces, and you have to use a positional or named parameter for the width | ||
//~| NOTE: printf formatting not supported | ||
} |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
error: multiple unused formatting arguments | ||
--> $DIR/issue-89173.rs:7:20 | ||
| | ||
LL | print!("%0*x", width, num); | ||
| ------ ^^^^^ ^^^ argument never used | ||
| | | | ||
| | argument never used | ||
| multiple missing formatting specifiers | ||
| | ||
note: format specifiers use curly braces, and you have to use a positional or named parameter for the width | ||
--> $DIR/issue-89173.rs:7:13 | ||
| | ||
LL | print!("%0*x", width, num); | ||
| ^^^^ | ||
= note: printf formatting not supported; see the documentation for `std::fmt` | ||
|
||
error: aborting due to previous error | ||
|