mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
19 lines
622 B
Text
19 lines
622 B
Text
error: `format!(..)` appended to existing `String`
|
|
--> $DIR/format_push_string.rs:5:5
|
|
|
|
|
LL | string += &format!("{:?}", 1234);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::format-push-string` implied by `-D warnings`
|
|
= help: consider using `write!` to avoid the extra allocation
|
|
|
|
error: `format!(..)` appended to existing `String`
|
|
--> $DIR/format_push_string.rs:6:5
|
|
|
|
|
LL | string.push_str(&format!("{:?}", 5678));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider using `write!` to avoid the extra allocation
|
|
|
|
error: aborting due to 2 previous errors
|
|
|