mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
26 lines
266 B
Rust
26 lines
266 B
Rust
// run-rustfix
|
|
|
|
#![allow(unused, clippy::assign_op_pattern)]
|
|
|
|
fn main() {
|
|
|
|
let a = "zero";
|
|
|
|
|
|
|
|
let b = 1;
|
|
let c = 2;
|
|
|
|
|
|
let d: usize = 1;
|
|
|
|
|
|
let mut e = 1;
|
|
e = 2;
|
|
|
|
|
|
let h = format!("{}", e);
|
|
|
|
println!("{}", a);
|
|
}
|