rust/tests/mir-opt/inline/inline_closure.rs
2023-10-19 15:51:52 +00:00

15 lines
298 B
Rust

// skip-filecheck
// compile-flags: -Z span_free_formats
// Tests that MIR inliner can handle closure arguments. (#45894)
fn main() {
println!("{}", foo(0, 14));
}
// EMIT_MIR inline_closure.foo.Inline.after.mir
fn foo<T: Copy>(_t: T, q: i32) -> i32 {
let x = |_t, _q| _t;
x(q, q)
}