mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
384 B
17 lines
384 B
fn main() {
|
|
// ANCHOR: here
|
|
let f: Box<dyn Fn() + Send + 'static> = Box::new(|| println!("hi"));
|
|
|
|
fn takes_long_type(f: Box<dyn Fn() + Send + 'static>) {
|
|
// --snip--
|
|
}
|
|
|
|
fn returns_long_type() -> Box<dyn Fn() + Send + 'static> {
|
|
// --snip--
|
|
// ANCHOR_END: here
|
|
Box::new(|| ())
|
|
// ANCHOR: here
|
|
}
|
|
// ANCHOR_END: here
|
|
}
|