rust/tests/mir-opt/derefer_inline_test.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
209 B
Rust
Raw Normal View History

// unit-test: Derefer
// EMIT_MIR derefer_inline_test.main.Derefer.diff
// ignore-wasm32 compiled with panic=abort by default
#[inline]
fn f() -> Box<u32> {
Box::new(0)
}
fn main() {
Box::new(f());
}