Sign in
android
/
toolchain
/
rustc
/
b1d328019a485dc2e58d5dc46556067c927ec9f2
/
.
/
src
/
test
/
ui
/
span
/
borrowck-ref-into-rvalue.fixed
blob: 51f65e5345d2a0f2ad3b75b0621b4ecf83c55226 [
file
] [
log
] [
blame
]
// 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
);
}