mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
61 lines
1.9 KiB
Text
61 lines
1.9 KiB
Text
error: format specifiers have no effect on `format_args!()`
|
|
--> $DIR/unused_format_specs_unfixable.rs:12:15
|
|
|
|
|
LL | println!("{:5}.", format_args!(""));
|
|
| ^^^^
|
|
|
|
|
= note: `-D clippy::unused-format-specs` implied by `-D warnings`
|
|
help: for the width to apply consider using `format!()`
|
|
|
|
|
LL | println!("{:5}.", format!(""));
|
|
| ~~~~~~
|
|
help: if the current behavior is intentional, remove the format specifiers
|
|
|
|
|
LL - println!("{:5}.", format_args!(""));
|
|
LL + println!("{}.", format_args!(""));
|
|
|
|
|
|
|
error: format specifiers have no effect on `format_args!()`
|
|
--> $DIR/unused_format_specs_unfixable.rs:16:15
|
|
|
|
|
LL | println!("{:.3}", format_args!("abcde"));
|
|
| ^^^^^
|
|
|
|
|
help: for the precision to apply consider using `format!()`
|
|
|
|
|
LL | println!("{:.3}", format!("abcde"));
|
|
| ~~~~~~
|
|
help: if the current behavior is intentional, remove the format specifiers
|
|
|
|
|
LL - println!("{:.3}", format_args!("abcde"));
|
|
LL + println!("{}", format_args!("abcde"));
|
|
|
|
|
|
|
error: format specifiers have no effect on `format_args!()`
|
|
--> $DIR/unused_format_specs_unfixable.rs:19:15
|
|
|
|
|
LL | println!("{:5}.", format_args_from_macro!());
|
|
| ^^^^
|
|
|
|
|
= help: for the width to apply consider using `format!()`
|
|
help: if the current behavior is intentional, remove the format specifiers
|
|
|
|
|
LL - println!("{:5}.", format_args_from_macro!());
|
|
LL + println!("{}.", format_args_from_macro!());
|
|
|
|
|
|
|
error: format specifiers have no effect on `format_args!()`
|
|
--> $DIR/unused_format_specs_unfixable.rs:23:15
|
|
|
|
|
LL | println!("{args:5}");
|
|
| ^^^^^^^^
|
|
|
|
|
= help: for the width to apply consider using `format!()`
|
|
help: if the current behavior is intentional, remove the format specifiers
|
|
|
|
|
LL - println!("{args:5}");
|
|
LL + println!("{args}");
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|