rust/tests/mir-opt/inline/unsized_argument.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
307 B
Rust
Raw Normal View History

//@ needs-unwind
#![feature(unsized_fn_params)]
#[inline(always)]
fn callee(y: [i32]) {}
// EMIT_MIR unsized_argument.caller.Inline.diff
fn caller(x: Box<[i32]>) {
2023-10-21 00:21:03 -05:00
// CHECK-LABEL: fn caller(
// CHECK-NOT: (inlined callee)
callee(*x);
}
fn main() {
let b = Box::new([1]);
caller(b);
}