error[E0499]: cannot borrow `f` as mutable more than once at a time --> $DIR/borrowck-call-is-borrow-issue-12224.rs:22:16 | 22 | f(Box::new(|| { | - ^^ second mutable borrow occurs here | | | first mutable borrow occurs here ... 26 | f((Box::new(|| {}))) | - borrow occurs due to use of `f` in closure 27 | //~^ NOTE borrow occurs due to use of `f` in closure 28 | })); | - first borrow ends here error[E0596]: cannot borrow immutable borrowed content `*f` as mutable --> $DIR/borrowck-call-is-borrow-issue-12224.rs:40:5 | 38 | fn test2(f: &F) where F: FnMut() { | -- use `&mut F` here to make mutable 39 | //~^ NOTE use `&mut F` here to make mutable 40 | (*f)(); | ^^^^ cannot borrow as mutable error[E0596]: cannot borrow immutable `Box` content `*f.f` as mutable --> $DIR/borrowck-call-is-borrow-issue-12224.rs:51:5 | 49 | fn test4(f: &Test) { | ----- use `&mut Test` here to make mutable 50 | //~^ NOTE use `&mut Test` here to make mutable 51 | f.f.call_mut(()) | ^^^ cannot borrow as mutable error[E0504]: cannot move `f` into closure because it is borrowed --> $DIR/borrowck-call-is-borrow-issue-12224.rs:73:13 | 71 | f(Box::new(|a| { | - borrow of `f` occurs here 72 | //~^ NOTE borrow of `f` occurs here 73 | foo(f); | ^ move into closure occurs here error[E0507]: cannot move out of captured outer variable in an `FnMut` closure --> $DIR/borrowck-call-is-borrow-issue-12224.rs:73:13 | 69 | let mut f = |g: Box, b: isize| {}; | ----- captured outer variable ... 73 | foo(f); | ^ cannot move out of captured outer variable in an `FnMut` closure error: aborting due to 5 previous errors