summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/inline/inline_into_box_place.rs
blob: 02823e4e1b7456a72421cd326389ca0c379a2c22 (plain)
1
2
3
4
5
6
7
8
9
// ignore-endian-big
// ignore-wasm32-bare compiled with panic=abort by default
// ignore-debug MIR alignment checks in std alter the diff, breaking the test
// compile-flags: -Z mir-opt-level=4

// EMIT_MIR inline_into_box_place.main.Inline.diff
fn main() {
    let _x: Box<Vec<u32>> = Box::new(Vec::new());
}