mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
12 lines
226 B
Rust
12 lines
226 B
Rust
//@ run-pass
|
|
fn call_it<F:FnMut(i32,i32)->i32>(y: i32, mut f: F) -> i32 {
|
|
f(2, y)
|
|
}
|
|
|
|
pub fn main() {
|
|
let f = |x: i32, y: i32| -> i32 { x + y };
|
|
let z = call_it(3, f);
|
|
println!("{}", z);
|
|
assert_eq!(z, 5);
|
|
}
|