mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
19 lines
631 B
Plaintext
19 lines
631 B
Plaintext
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 is not supported; see the documentation for `std::fmt`
|
|
|
|
error: aborting due to 1 previous error
|
|
|