mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 07:41:58 +00:00
7 lines
98 B
Rust
7 lines
98 B
Rust
//@ run-rustfix
|
|
|
|
fn main() {
|
|
let x == 2; //~ ERROR unexpected `==`
|
|
println!("x: {}", x)
|
|
}
|