Sign in
rust
/
rust
/
9ebe418dc6c3aaca3f9fa59da0b508b41bc095a2
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-101477-let.rs
blob: edfcbbf8e8ffba47e61b6c6ef5a8270f82a3a613 [
file
]
//@ run-rustfix
fn
main
()
{
let
x
==
2
;
//~ ERROR unexpected `==`
println
!(
"x: {}"
,
x
)
}