mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
7 lines
171 B
Rust
7 lines
171 B
Rust
#![warn(clippy::format_push_string)]
|
|
|
|
fn main() {
|
|
let mut string = String::new();
|
|
string += &format!("{:?}", 1234);
|
|
string.push_str(&format!("{:?}", 5678));
|
|
}
|