mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-25 02:53:35 +00:00
12 lines
240 B
Rust
12 lines
240 B
Rust
//@ run-pass
|
|
fn make_adder(x: isize) -> Box<dyn FnMut(isize)->isize + 'static> {
|
|
Box::new(move |y| { x + y })
|
|
}
|
|
|
|
pub fn main() {
|
|
let mut adder = make_adder(3);
|
|
let z = (*adder)(2);
|
|
println!("{}", z);
|
|
assert_eq!(z, 5);
|
|
}
|