Sign in
fuchsia
/
third_party
/
rust
/
8035796b9aabf1aa2a711694e40f00fe8a822f40
/
.
/
src
/
test
/
ui
/
cancel-clean-via-immediate-rvalue-ref.rs
blob: a0a561ab2d21ed9293205383120f151b1b845cfc [
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
));
}