rust/tests/ui/binop/binop-evaluation-order-primitive.rs
2025-07-05 00:45:24 +05:00

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
}
);
}