mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-25 16:52:57 +00:00
13 lines
209 B
Rust
13 lines
209 B
Rust
// skip-filecheck
|
|
// unit-test: Derefer
|
|
// EMIT_MIR derefer_inline_test.main.Derefer.diff
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
|
|
#[inline]
|
|
fn f() -> Box<u32> {
|
|
Box::new(0)
|
|
}
|
|
fn main() {
|
|
Box::new(f());
|
|
}
|