Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
mut_ref.rs
blob: 18ff33a99ce3f49007d650546f7ace8ee0fb44d8 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
mut_ref
)]
fn
mut_ref
()
{
if
let
Some
(
mut
/*a*/
ref
/*def*/
mut
/*abc*/
state
)=
/*abc*/
foo
{
println
!(
"asdfasdfasdf"
);
}
if
let
Some
(
mut
/*a*/
ref
/*def*/
/*mut*/
state
)=
/*abc*/
foo
{
println
!(
"asdfasdfasdf"
);
}
}