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

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

11 lines
240 B
Rust
Raw Normal View History

2023-07-22 11:22:21 -05:00
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
//@ test-mir-pass: Inline
//@ compile-flags: --crate-type=lib
// EMIT_MIR inline_box_fn.call.Inline.diff
fn call(x: Box<dyn Fn(i32)>) {
2023-10-20 13:24:38 -05:00
// CHECK-LABEL: fn call(
2023-10-22 11:27:43 -05:00
// CHECK-NOT: inlined
x(1);
}