Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
fn action(mut cb: Box<dyn FnMut(usize) -> usize>) -> usize {
cb(1)
}
pub fn main() {
println!("num: {}", action(Box::new(move |u| u)));