rust/tests/ui/parser/issue-101477-let.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
96 B
Rust
Raw Normal View History

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