Sign in
rust
/
rust
/
526a91cbcc4601b92b0587405015e07b9c0d79f6
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-32501.rs
blob: 500242030c6556ae272760b25ea848f953509fe0 [
file
] [
log
] [
blame
]
fn
main
()
{
let
a
=
0
;
let
_b
=
0
;
let
_
=
0
;
let
mut
b
=
0
;
let
mut
_b
=
0
;
let
mut
_
=
0
;
//~^ ERROR `mut` must be followed by a named binding
}