mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 06:59:48 +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();
|
|
}
|