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