mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-02 04:08:10 +00:00
16 lines
253 B
Rust
16 lines
253 B
Rust
//! Test evaluation order in binary operations with primitive types.
|
|
|
|
//@ run-pass
|
|
|
|
fn main() {
|
|
let x = Box::new(0);
|
|
assert_eq!(
|
|
0,
|
|
*x + {
|
|
drop(x);
|
|
let _ = Box::new(main);
|
|
0
|
|
}
|
|
);
|
|
}
|