]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issue-101477-let.rs
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[rust.git] / tests / ui / parser / issue-101477-let.rs
1 // run-rustfix
2
3 fn main() {
4     let x == 2; //~ ERROR unexpected `==`
5     println!("x: {}", x)
6 }