mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
16 lines
240 B
Rust
16 lines
240 B
Rust
// needs-unwind
|
|
#![feature(unsized_fn_params)]
|
|
|
|
#[inline(always)]
|
|
fn callee(y: [i32]) {}
|
|
|
|
// EMIT_MIR unsized_argument.caller.Inline.diff
|
|
fn caller(x: Box<[i32]>) {
|
|
callee(*x);
|
|
}
|
|
|
|
fn main() {
|
|
let b = Box::new([1]);
|
|
caller(b);
|
|
}
|