mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
9 lines
179 B
Rust
9 lines
179 B
Rust
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
// unit-test: Inline
|
|
// compile-flags: --crate-type=lib
|
|
|
|
// EMIT_MIR inline_box_fn.call.Inline.diff
|
|
fn call(x: Box<dyn Fn(i32)>) {
|
|
x(1);
|
|
}
|