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

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

14 lines
398 B
Rust
Raw Normal View History

2023-07-22 11:22:21 -05:00
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
//@ compile-flags: -Zmir-enable-passes=+Inline --crate-type=lib
#![feature(fn_traits, tuple_trait, unboxed_closures)]
use std::marker::Tuple;
// EMIT_MIR dont_ice_on_generic_rust_call.call.Inline.diff
pub fn call<I: Tuple>(mut mock: Box<dyn FnMut<I, Output = ()>>, input: I) {
// CHECK-LABEL: fn call(
2023-10-22 11:27:43 -05:00
// CHECK-NOT: inlined
mock.call_mut(input)
}