Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
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
));
}