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

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

7 lines
97 B
Rust
Raw Normal View History

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