Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
src
/
tools
/
miri
/
tests
/
pass
/
zst_box.rs
blob: 12138be5af9768e6b39423995859dc5952d9e841 [
file
] [
log
] [
blame
]
fn
main
()
{
let
x
=
Box
::
new
(());
let
y
=
Box
::
new
(());
drop
(
y
);
let
z
=
Box
::
new
(());
drop
(
x
);
drop
(
z
);
}