summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unboxed-closures/unboxed-closures-call-sugar-object-autoderef.rs
blob: d47ceea0f4f4d9ca2122d17baa7aee32e75c8a42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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);
}