Sign in
fuchsia
/
third_party
/
rust
/
15adfb9cd5b029268e1470a41391d91859b0a1f8
/
.
/
tests
/
ui
/
cancel-clean-via-immediate-rvalue-ref.rs
blob: 0575c29bffdb3c7c6687c65a383c16e919630463 [
file
] [
log
] [
blame
]
//@ run-pass
//@ pretty-expanded FIXME #23616
fn
foo
(
x
:
&
mut
Box
<
u8
>)
{
*
x
=
Box
::
new
(
5
);
}
pub
fn
main
()
{
foo
(&
mut
Box
::
new
(
4
));
}