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