Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-101477-let.fixed
blob: cbcbeb171af543705e5a89082186cad753cfb438 [
file
] [
log
] [
blame
]
//@ run-rustfix
fn main
()
{
let
x
=
2
;
//~ ERROR unexpected `==`
println
!(
"x: {}"
,
x
)
}