7 lines
98 B
Rust
7 lines
98 B
Rust
//@ run-rustfix
|
|
|
|
fn main() {
|
|
let x == 2; //~ ERROR unexpected `==`
|
|
println!("x: {}", x)
|
|
}
|