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-04-24 22:25:30 -05:00
|
|
|
27 | }));
|
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-04-24 22:25:30 -05:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:39:5
|
2016-11-08 00:21:53 -06:00
|
|
|
|
|
2017-04-24 22:25:30 -05:00
|
|
|
37 | fn test2<F>(f: &F) where F: FnMut() {
|
2016-11-08 00:21:53 -06:00
|
|
|
| -- use `&mut F` here to make mutable
|
2017-04-24 22:25:30 -05:00
|
|
|
38 | //~^ NOTE use `&mut F` here to make mutable
|
|
|
|
39 | (*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-04-24 22:25:30 -05:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:50:5
|
2016-11-08 00:21:53 -06:00
|
|
|
|
|
2017-04-24 22:25:30 -05:00
|
|
|
48 | fn test4(f: &Test) {
|
2017-01-17 01:42:11 -06:00
|
|
|
| ----- use `&mut Test` here to make mutable
|
2017-04-24 22:25:30 -05:00
|
|
|
49 | //~^ NOTE use `&mut Test` here to make mutable
|
|
|
|
50 | 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-04-24 22:25:30 -05:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:72:13
|
2016-11-08 00:21:53 -06:00
|
|
|
|
|
2017-04-24 22:25:30 -05:00
|
|
|
70 | f(Box::new(|a| {
|
2016-11-08 00:21:53 -06:00
|
|
|
| - borrow of `f` occurs here
|
2017-04-24 22:25:30 -05:00
|
|
|
71 | //~^ NOTE borrow of `f` occurs here
|
|
|
|
72 | 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-04-24 22:25:30 -05:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:72:13
|
2016-11-08 00:21:53 -06:00
|
|
|
|
|
2017-04-24 22:25:30 -05:00
|
|
|
68 | let mut f = |g: Box<FnMut(isize)>, b: isize| {};
|
|
|
|
| ----- captured outer variable
|
|
|
|
...
|
|
|
|
72 | foo(f);
|
2016-11-08 00:21:53 -06:00
|
|
|
| ^ cannot move out of captured outer variable in an `FnMut` closure
|
|
|
|
|
2017-05-22 06:46:05 -05:00
|
|
|
error: aborting due to previous error(s)
|
2016-11-08 00:21:53 -06:00
|
|
|
|