fn main() { // ANCHOR: here let f: Box = Box::new(|| println!("hi")); fn takes_long_type(f: Box) { // --snip-- } fn returns_long_type() -> Box { // --snip-- // ANCHOR_END: here Box::new(|| ()) // ANCHOR: here } // ANCHOR_END: here }