mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-26 05:49:15 +00:00
13 lines
214 B
Rust
13 lines
214 B
Rust
// skip-filecheck
|
|
//@ test-mir-pass: 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());
|
|
}
|