summary refs log tree commit diff
path: root/src/test/mir-opt/inline/inline-into-box-place.rs
blob: 77834e9661cecbf9376cea862b84921539d07d85 (plain)
1
2
3
4
5
6
7
8
9
// ignore-wasm32-bare compiled with panic=abort by default
// compile-flags: -Z mir-opt-level=3
// EMIT_MIR_FOR_EACH_BIT_WIDTH
#![feature(box_syntax)]

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