Sign in
fuchsia
/
third_party
/
rust
/
4360fd7f342943b3d25a3eb7064fd3ef7599274e
/
.
/
tests
/
ui
/
unused-move.rs
blob: 3d5eff2c48d50f57e2abff59f37ff5e67c6db8c6 [
file
] [
log
] [
blame
]
//@ run-pass
// Issue #3878
// Issue Name: Unused move causes a crash
// Abstract: zero-fill to block after drop
#![
allow
(
path_statements
)]
pub
fn
main
()
{
let
y
:
Box
<
_
>
=
Box
::
new
(
1
);
y
;
}