mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
13 lines
221 B
Rust
13 lines
221 B
Rust
// unit-test: Derefer
|
|
// EMIT_MIR derefer_inline_test.main.Derefer.diff
|
|
// ignore-wasm32 compiled with panic=abort by default
|
|
|
|
#![feature(box_syntax)]
|
|
#[inline]
|
|
fn f() -> Box<u32> {
|
|
box 0
|
|
}
|
|
fn main() {
|
|
box f();
|
|
}
|