Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
unused-move.rs
blob: 87398652e93c33b01649ad59d026b22f0f988519 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// Issue #3878
// Issue Name: Unused move causes a crash
// Abstract: zero-fill to block after drop
//@ pretty-expanded FIXME #23616
#![
allow
(
path_statements
)]
pub
fn
main
()
{
let
y
:
Box
<
_
>
=
Box
::
new
(
1
);
y
;
}