Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
pattern
/
bindings-after-at
/
nested-binding-mode-lint.rs
blob: b445e8516340953094c0db34308e2ad6a24e5990 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
deny
(
unused_mut
)]
fn
main
()
{
let
mut
is_mut
@
not_mut
=
42
;
&
mut
is_mut
;
&
not_mut
;
let
not_mut
@
mut
is_mut
=
42
;
&
mut
is_mut
;
&
not_mut
;
}