mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
234 B
Rust
14 lines
234 B
Rust
//@ 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;
|
|
}
|