rust/tests/ui/parser/issue-101477-let.fixed
2023-01-11 09:32:08 +00:00

7 lines
96 B
Rust

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