mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
7 lines
116 B
Rust
7 lines
116 B
Rust
|
// run-pass
|
||
|
|
||
|
fn main() {
|
||
|
let x = Box::new(0);
|
||
|
assert_eq!(0, *x + { drop(x); let _ = Box::new(main); 0 });
|
||
|
}
|