blob: 4a0aad9b0e699c937394fea0fc38c4f1ff08135c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// compile-flags: -Z span_free_formats
// Tests that MIR inliner can handle closure captures.
fn main() {
println!("{:?}", foo(0, 14));
}
// EMIT_MIR rustc.foo.Inline.after.mir
fn foo<T: Copy>(t: T, q: i32) -> (i32, T) {
let x = |_q| (q, t);
x(q)
}
|