about summary refs log tree commit diff
path: root/tests/mir-opt/inline/inline_box_fn.rs
blob: bb2da3ac515764b0ba534bd2c4a5e5e2215c6af8 (plain)
1
2
3
4
5
6
7
8
9
10
// 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)>) {
    // CHECK-LABEL: fn call(
    // CHECK-NOT: inlined
    x(1);
}