Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
unused-move.rs
blob: 697434d47ebb217c4cceb0d9d14e0e851bd1b5fe [
file
] [
log
] [
blame
]
// 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
;
}