mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-03 17:05:07 +00:00
7 lines
97 B
Rust
7 lines
97 B
Rust
// run-rustfix
|
|
|
|
fn main() {
|
|
let x == 2; //~ ERROR unexpected `==`
|
|
println!("x: {}", x)
|
|
}
|