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