2021-09-28 22:11:55 +00:00
|
|
|
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);
|
|
|
|
| ^^^^
|
2023-01-02 11:23:43 +00:00
|
|
|
= note: printf formatting is not supported; see the documentation for `std::fmt`
|
2021-09-28 22:11:55 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-09-28 22:11:55 +00:00
|
|
|
|