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