Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
primitive-binop-lhs-mut.rs
blob: d988e2ed14fc4be8d4d15aa2b481f209dc28eb41 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
main
()
{
let
x
=
Box
::
new
(
0
);
assert_eq
!(
0
,
*
x
+
{
drop
(
x
);
let
_
=
Box
::
new
(
main
);
0
});
}