mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 21:29:03 +00:00
7 lines
117 B
Rust
7 lines
117 B
Rust
//@ run-pass
|
|
|
|
fn main() {
|
|
let x = Box::new(0);
|
|
assert_eq!(0, *x + { drop(x); let _ = Box::new(main); 0 });
|
|
}
|