rust/tests/ui/unboxed-closures/unboxed-closures-call-sugar-object-autoderef.rs
2023-01-11 09:32:08 +00:00

16 lines
333 B
Rust

// run-pass
// Test that the call operator autoderefs when calling to an object type.
use std::ops::FnMut;
fn make_adder(x: isize) -> Box<dyn FnMut(isize)->isize + 'static> {
Box::new(move |y| { x + y })
}
pub fn main() {
let mut adder = make_adder(3);
let z = adder(2);
println!("{}", z);
assert_eq!(z, 5);
}