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