summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/boxes.rs
blob: 78599174b423b1a6324c147524b29908b279c46a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// unit-test: ConstProp
// compile-flags: -O
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY

#![feature(rustc_attrs, stmt_expr_attributes)]

// Note: this test verifies that we, in fact, do not const prop `#[rustc_box]`

// EMIT_MIR boxes.main.ConstProp.diff
fn main() {
    let x = *(#[rustc_box]
    Box::new(42))
        + 0;
}