Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
span
/
borrowck-ref-into-rvalue.fixed
blob: 9521a53e6bcabdea64c00813bfeea6c34c514c0d [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
fn main
()
{
let
msg
;
let
binding
=
Some
(
"Hello"
.
to_string
());
match binding
{
//~^ ERROR temporary value dropped while borrowed
Some
(
ref
m
)
=>
{
msg
=
m
;
},
None
=>
{
panic
!()
}
}
println
!(
"{}"
,
*
msg
);
}