Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
4b3ece475d6e77465a30c8b53d7e1e9e861e4b79
/
.
/
tests
/
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
));
}