Sign in
android
/
toolchain
/
rustc
/
b1d328019a485dc2e58d5dc46556067c927ec9f2
/
.
/
src
/
test
/
ui
/
span
/
borrowck-ref-into-rvalue.rs
blob: 7b09fad927fdf75040fea2d118cea45a6db1da7f [
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
);
}