mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
14 lines
247 B
Rust
14 lines
247 B
Rust
// run-pass
|
|
use std::ops::FnMut;
|
|
|
|
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);
|
|
}
|