Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
span
/
borrowck-ref-into-rvalue.rs
blob: 1002e20987c5512918405d822c1939d4d4d34a78 [
file
] [
log
] [
blame
]
//@ run-rustfix
fn
main
()
{
let
msg
;
match
Some
(
"Hello"
.
to_string
())
{
//~^ ERROR temporary value dropped while borrowed
Some
(
ref
m
)
=>
{
msg
=
m
;
},
None
=>
{
panic
!()
}
}
println
!(
"{}"
,
*
msg
);
}