rust/tests/ui/unboxed-closures/unboxed-closures-call-sugar...

14 lines
286 B
Rust

//@ run-pass
// Test that the call operator autoderefs when calling a bounded type parameter.
fn call_with_2<F>(x: &mut F) -> isize
where F : FnMut(isize) -> isize
{
x(2) // look ma, no `*`
}
pub fn main() {
let z = call_with_2(&mut |x| x - 22);
assert_eq!(z, -20);
}