rust/tests/ui/unboxed-closures/unboxed-closures-call-sugar-autoderef.rs
2024-02-16 20:02:50 +00:00

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);
}