mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
16 lines
307 B
Rust
16 lines
307 B
Rust
// run-pass
|
|
// Test that the call operator autoderefs when calling a bounded type parameter.
|
|
|
|
use std::ops::FnMut;
|
|
|
|
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);
|
|
}
|