mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +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());
|
|
}
|